2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / opt / pr69483.C
blob866aba87e6fd69abc03d83baac4be5756822c907
1 // PR tree-optimization/69483
2 // { dg-do compile }
4 struct T { struct S *a; };
5 struct S b; // { dg-error "aggregate 'S b' has incomplete type and cannot be defined" }
6 struct T c = { &b };