Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
ext
/
sizeof-complit.C
blob: 6cf6d4e1fadb19e118a036e480a3fbbc1b822f41 [
file
] [
log
] [
blame
]
// PR c++/18126
// { dg-options "" }
struct
s
{
int
a
;
int
b
;
};
char
x
[((
sizeof
(
struct
s
){
1
,
2
})
==
sizeof
(
struct
s
))
?
1
:
-
1
];