summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/constexpr-array12.C
blob: 347ee54f06f208c87e4244535a7b1f7530ef14bf (plain)
1
2
3
4
5
6
7
8
// { dg-do compile { target c++11 } }

struct A { int ar[3]; };
int main()
{
  constexpr A a1 = { 0, a1.ar[0] };
  constexpr A a2 = { a2.ar[0] };	// { dg-error "uninitialized" }
}