blob: a241a3f454f7c5877284c05888d84a33d23cc70c [file] [log] [blame]
/* Test C23 enumerations with fixed underlying type. Test -Wc11-c23-compat
warnings. */
/* { dg-do compile } */
/* { dg-options "-std=c23 -pedantic-errors -Wc11-c23-compat" } */
enum e1 : int; /* { dg-warning "ISO C does not support specifying 'enum' underlying types before" } */
enum e2 : short { E2 }; /* { dg-warning "ISO C does not support specifying 'enum' underlying types before" } */