vect: Add missed opcodes in vect_get_smallest_scalar_type [PR115228]
[official-gcc.git] / gcc / testsuite / c-c++-common / Wswitch-outside-range-4.c
blobd9bd756dc507e7bd5881b8728e53bfaacd23a55d
1 // PR c++/90875
2 // { dg-options "-Wno-pedantic -Wno-switch-outside-range" }
4 void f(char c)
6 switch (c)
8 case -300 ... 300:; // { dg-bogus "lower value in case label range less than minimum value for type|upper value in case label range exceeds maximum value for type" }