1 // { dg-do compile { target c++11 } }
2 // Core DR 948
3 
something()4 constexpr int something() { return 3; }
5 
main()6 int main() {
7   if (constexpr long v = something()) {}
8   if (static long v = something()) { } // { dg-error "'decl-specifier' invalid" }
9 }
10