aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/nsdmi-union2.C
blob: 069232755f9973bf7477f7c217198c4e351543d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// PR c++/52377
// { dg-require-effective-target c++11 }

union A				// { dg-error "multiple" }
{
  int i = 4;
  int j = 2;
};

A a;

union B
{
  int i,j;
  B(): i(1), j(2) {}		// { dg-error "multiple" }
};

B b;