aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/constexpr-condition.C
blob: 388a73488e7a363ffab2b0fdfb053942b6ee96ec (plain)
1
2
3
4
5
6
7
8
9
// { dg-do compile { target c++11 } }
// Core DR 948

constexpr int something() { return 3; }

int main() {
  if (constexpr long v = something()) {}
  if (static long v = something()) { } // { dg-error "decl-specifier invalid" }
}