1 /* PR c++/70639 */
2 /* { dg-do compile } */
3 /* { dg-options "-Wmisleading-indentation" } */
4
5 void bar (int);
6 void
7 foo (int x)
8 {
9 switch (x);
10 bar (x);
11 }