blob: c406c998046f1e6e29ee6a0b7cba8179c9331b73 [file] [log] [blame]
// PR c++/25417
// { dg-options "" }
struct object {
int a;
int b;
};
void f (int c, int d)
{
object o = ((object){ a : c, b : d});
}