blob: f186926617fc9a08752488555245586942d3088d [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;
}
return 3;
}
int
fn1 (TS *s)
{
switch (s->e) /* { dg-warning "enumeration value .C. not handled in switch" } */
{
case A:
return 1;
case B:
return 2;
}
return 3;
}