PR c++/85553
[official-gcc.git] / gcc / testsuite / g++.dg / ext / sizeof-complit.C
blob6cf6d4e1fadb19e118a036e480a3fbbc1b822f41
1 // PR c++/18126
2 // { dg-options "" }
4 struct s { int a; int b; };
5 char x[((sizeof (struct s){ 1, 2 }) == sizeof (struct s)) ? 1 : -1];