aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/Wswitch-enum-3.c
blob: 98db4d578f151544e9d568fe088337c08ac25063 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* { dg-do compile } */
/* { dg-options "-O2 -Wswitch-enum" } */

typedef enum { a = 2 } T;

int main()
{
    switch((T)a) /* { dg-warning "enumeration value 'a' not handled" "a" } */
    {
    case 1: /* { dg-warning "case value '1' not in enumerated" "1" } */
        break;
    }
    return 0;
}