re PR c++/87934 (struct with NSDMI of enum makes initialization a non-constant expres...
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-87934.C
1 // PR c++/87934
2 // { dg-do compile { target c++11 } }
3
4 struct Foo
5 {
6 enum { BAR } bar = BAR;
7 };
8
9 constexpr Foo foo{};