PR c++/85553
[official-gcc.git] / gcc / testsuite / g++.dg / ext / complit5.C
blobc406c998046f1e6e29ee6a0b7cba8179c9331b73
1 // PR c++/25417
2 // { dg-options "" }
4 struct object {
5   int a;
6   int b;
7 };
9 void f (int c, int d)
11   object o = ((object){ a : c, b : d});