]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr57773.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr57773.c
CommitLineData
96066ce1
MP
1/* { dg-do compile } */
2/* { dg-options "-std=c99 -Wpedantic" } */
3
4enum e { A };
5struct { enum e b: 2; } s1;
6struct { signed char b: 2; } s2;
7struct { unsigned char b: 2; } s3;
8struct { short b: 2; } s4;
9struct { unsigned short b: 2; } s5;
10struct { long int b: 2; } s6;
11struct { unsigned long int b: 2; } s7;
12struct { long long int b: 2; } s8;
13struct { unsigned long long int b: 2; } s9;