OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / init1.C
1 // PR c++/9623
2 // Test for trivial use of named initializer extension
3 // { dg-options "" }
4
5 struct S { int x;  int y; };
6 S s = { x:1, y:2 };