* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-condition.C
blob388a73488e7a363ffab2b0fdfb053942b6ee96ec
1 // { dg-do compile { target c++11 } }
2 // Core DR 948
4 constexpr int something() { return 3; }
6 int main() {
7   if (constexpr long v = something()) {}
8   if (static long v = something()) { } // { dg-error "decl-specifier invalid" }