Add execution tests of ARM EXT intrinsics
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / static_assert9.C
blobfccaa449c170afc22b1547f6c210b0538f4e5d7c
1 // PR c++/58837
2 // { dg-require-effective-target c++11 }
4 void f();
5 static_assert(f, "");
6 struct A {};
7 static_assert(A::~A, "");      // { dg-error "non-static member function" }