/* PR c/7652 *//* { dg-do compile } *//* { dg-options "-Wimplicit-fallthrough" } *//* Another nested switch, and with an initialization on top. Check that we do not warn here as the case 3 falls through to break. */voidf(inti){switch(i){case1:{intt=3;switch(i){case3:i+=10;case4:break;}break;}case2:--i;break;}}