OSDN Git Service

PR c/40032
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / noncompile / incomplete-5.c
1 /* ICE on unnamed field with incomplete enum type: PR 40032.  */
2 /* { dg-do compile } */
3 /* { dg-options "" } */
4 struct A
5 {
6   enum E : 8; /* { dg-warning "narrower than values of its type" } */
7   /* { dg-error "has incomplete type" "incomplete" { target *-*-* } 6 } */
8 };