/cp
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-ice19.C
blob7066eabdfc70384c3d2c63bc54a4b75001b4341e
1 // PR c++/81054
2 // { dg-do compile { target c++11 } }
4 struct A
6   volatile int i;
7   constexpr A() : i() {}
8 };
10 struct B
12   static constexpr A a {};  // { dg-error "not literal" }