]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/c2x-enum-8.c
testsuite: Refer more consistently to C23 not C2X
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / c2x-enum-8.c
1 /* Test C23 enumerations with fixed underlying type. Test -Wc11-c23-compat
2 warnings. */
3 /* { dg-do compile } */
4 /* { dg-options "-std=c23 -pedantic-errors -Wc11-c23-compat" } */
5
6 enum e1 : int; /* { dg-warning "ISO C does not support specifying 'enum' underlying types before" } */
7 enum e2 : short { E2 }; /* { dg-warning "ISO C does not support specifying 'enum' underlying types before" } */