aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/sizeof-complit.C
blob: 6cf6d4e1fadb19e118a036e480a3fbbc1b822f41 (plain)
1
2
3
4
5
// PR c++/18126
// { dg-options "" }

struct s { int a; int b; };
char x[((sizeof (struct s){ 1, 2 }) == sizeof (struct s)) ? 1 : -1];