blob: 6fcf2a59c43c69a0f7132056d719f3ed4d05b039 (
plain)
1
2
3
4
5
6
7
8
|
/* Test C2x storage class specifiers in compound literals not permitted for
C90, but without a duplicate diagnostic, just the diagnostic for compound
literals not being permitted in C90 at all. */
/* { dg-do compile } */
/* { dg-options "-std=c90 -pedantic-errors" } */
int *ps = &(static int) { 1 }; /* { dg-error "ISO C90 forbids compound literals" } */
int ss = sizeof (static int) { 1 }; /* { dg-error "ISO C90 forbids compound literals" } */
|