OSDN Git Service

PR c++/37256
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / static_assert4.C
1 // { dg-options "-std=c++0x --param ggc-min-heapsize=0 --param ggc-min-expand=0 " }
2 // PR C++/30033
3 // Make sure that the static assert does not crash the GC.
4
5 template <class T>
6 struct default_delete
7 {
8   void
9   operator() (T * ptr) const
10   {
11     static_assert (sizeof (T) > 0, "Can't delete pointer to incomplete type");
12   }
13 };
14
15