Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-ctor.C
blob91c489db230d4316a79d0e87e912ccecc96bd114
1 // { dg-options -std=c++0x }
3 struct A
5   int i;
6   constexpr A() { }             // { dg-error "uninitialized member .A::i" }
7 };