OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-static7.C
1 // PR c++/48945
2 // { dg-options -std=c++0x }
3
4 struct A {
5   static constexpr bool is();
6   static constexpr bool is_not();
7 };
8
9 constexpr bool A::is() { return true; }
10 constexpr bool A::is_not() const { return true; } // { dg-error "static" }