aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/constexpr-ctor.C
blob: 659e733cdcd262e503170f5b6bf05eed6b036bda (plain)
1
2
3
4
5
6
7
// { dg-do compile { target c++11 } }

struct A
{
  int i;
  constexpr A() { }		// { dg-error "uninitialized member .A::i" }
};