aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/c11-enum-6.c
blob: a7201103325ae1df572cf2ae37e890eb01234722 (plain)
1
2
3
4
5
6
7
8
/* Test C23 enumerations with fixed underlying type are not diagnosed for C11
   with -pedantic-errors -Wno-c11-c23-compat.  */
/* { dg-do compile } */
/* { dg-options "-std=c11 -pedantic-errors -Wno-c11-c23-compat" } */

enum e1 : int;
enum e2 : short { A };
enum : short { B };