Sign in
gnu
/
gcc
/
refs/heads/devel/c++-contracts
/
.
/
gcc
/
testsuite
/
c-c++-common
/
Wmisleading-indentation-6.c
blob: 5b7dd7fd2fd59ed9c8689fcf1fa9e230b3bd196c [
file
] [
log
] [
blame
]
/* PR c++/71637 */
/* { dg-options "-ftrack-macro-expansion=0 -Wmisleading-indentation" } */
#define
m
(
x
)
({
int
y
;
if
(
x
)
y
=
0
;
else
y
=
1
;
y
;
})
int
main
()
{
int
x
=
m
(
0
);
return
x
;
}