blob: 9c05a84764a6ef70a91da69a53621b6de527c5d6 [file] [log] [blame]
/* PR c/61405 */
/* { dg-do compile } */
/* { dg-options "-Wswitch" } */
enum E { A, B, C };
struct S { enum E e:2; };
typedef struct S TS;
int
fn0 (struct S *s)
{
switch (s->e) /* { dg-warning "enumeration value .C. not handled in switch" } */
{
case A:
return 1;
case B:
return 2;
}
}
int
fn1 (TS *s)
{
switch (s->e) /* { dg-warning "enumeration value .C. not handled in switch" } */
{
case A:
return 1;
case B:
return 2;
}
}