[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / ext / complit13.C
blobc12678ba864c4a32bb7002b046110d2c489974c4
1 // PR c++/10207
2 // { dg-options "" }
4 typedef struct { } EmptyStruct;
5 typedef struct { EmptyStruct Empty; } DemoStruct;
7 void Func()
9   DemoStruct Demo;
10   Demo.Empty = (EmptyStruct) {};