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

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