]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/Wswitch-unreachable-2.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / Wswitch-unreachable-2.c
1 /* PR middle-end/71476 */
2 /* { dg-do compile } */
3 /* { dg-options "-Wswitch-unreachable" } */
4
5 void
6 foo (int a)
7 {
8 switch (a)
9 {
10 void f (void) { }
11 }
12 }