aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/Wswitch-outside-range-1.c
blob: 29e56f3ba2db95760b4b852eb248316e3c321332 (plain)
1
2
3
4
5
6
7
8
// PR c++/90875

void f(char c)
{
  switch (c)
    case 300: // { dg-warning "case label value exceeds maximum value for type" }
    case -300:; // { dg-warning "case label value is less than minimum value for type" }
}