OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / initlist8.C
1 // PR c++/37740
2 // { dg-options "-std=c++0x" }
3
4 struct A
5 {
6   int i;
7 };
8
9 struct B
10 {
11   double d;
12   A i;
13 };
14
15 int main()
16 {
17   A a;
18   new B{3.2, a};
19 }