(root)/
gcc-13.2.0/
gcc/
testsuite/
c-c++-common/
Wmisleading-indentation-4.c
       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  }