OSDN Git Service

2009-07-17 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / complit5.C
1 // PR c++/25417
2 // { dg-options "" }
3
4 struct object {
5   int a;
6   int b;
7 };
8
9 void f (int c, int d)
10 {
11   object o = ((object){ a : c, b : d});
12 }