Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
c-c++-common
/
Wdangling-else-3.c
blob: 0dae0d54ec8486b1a17192bbcc191227e46019ff [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-Wparentheses -Wno-dangling-else" } */
void
bar
(
int
);
void
foo
(
int
a
,
int
b
)
{
if
(
a
)
/* { dg-bogus "suggest explicit braces to avoid ambiguous" } */
if
(
b
)
bar
(
1
);
else
bar
(
2
);
}