Sign in
gnu
/
gcc
/
refs/heads/devel/c++-contracts
/
.
/
gcc
/
testsuite
/
c-c++-common
/
Wdangling-else-2.c
blob: 87ea1ab568792fd4b0743d0842440a31ccc8f46e [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-Wparentheses" } */
void
bar
(
int
);
void
foo
(
int
a
,
int
b
)
{
if
(
a
)
/* { dg-warning "suggest explicit braces to avoid ambiguous" } */
if
(
b
)
bar
(
1
);
else
bar
(
2
);
}