PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / c-c++-common / Wswitch-unreachable-2.c
blob8f57392d842357d3d2dcba92908df21a5c1b8961
1 /* PR c/71249 */
2 /* { dg-do compile } */
4 int
5 f (int i)
7 switch (i)
10 int j;
11 foo:
12 return i; /* { dg-bogus "statement will never be executed" } */
14 case 3:
15 goto foo;
17 return i;