1 // PR c++/48945
2 // { dg-do compile { target c++11 } }
3 
4 struct A {
5   static constexpr bool is();
6   static constexpr bool is_not();
7 };
8 
is()9 constexpr bool A::is() { return true; }
is_not()10 constexpr bool A::is_not() const { return true; } // { dg-error "static" }
11