Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr111911-2.c
blob: 28b69c46bdb753a99f5a3190d9cb5970a2a4f080 [
file
] [
log
] [
blame
]
/* { dg-options "-std=gnu23 -Wno-overflow -Wno-div-by-zero" } */
enum
e
:
bool
{
X
};
int
main
(
void
)
{
if
(!(
enum
e
)(
__INT_MAX__
+
1
)
/
!(
enum
e
)(
__INT_MAX__
+
1
))
;
return
1
;
}