Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
c-c++-common
/
Wmisleading-indentation-4.c
blob: d15a4793da46a09fb835967b9b07426fd4f87535 [
file
] [
log
] [
blame
]
/* PR c++/70639 */
/* { dg-do compile } */
/* { dg-options "-Wmisleading-indentation" } */
void
bar
(
int
);
void
foo
(
int
x
)
{
switch
(
x
);
bar
(
x
);
}