OSDN Git Service

2011-10-18 Janus Weil <janus@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / ucnid-8.c
1 /* Verify diagnostics for extended identifiers refer to UCNs (in the C
2    locale).  Further tests of C front-end diagnostics.  */
3 /* { dg-do compile } */
4 /* { dg-options "-std=gnu99 -fextended-identifiers -Wvla" } */
5 /* { dg-require-ascii-locale "" } */
6
7 int a __attribute__((__mode__(\u00e9))); /* { dg-error "unknown machine mode '\\\\U000000e9'" } */
8 struct s1 { int \u00e9 : 0; }; /* { dg-error "zero width for bit-field '\\\\U000000e9'" } */
9
10 void f (int b) { int \u00e9[b]; } /* { dg-warning "variable length array '\\\\U000000e9'" } */
11
12 void g (static int \u00e9); /* { dg-error "storage class specified for parameter '\\\\U000000e9'" } */
13
14 struct s2 { int \u00e1; } \u00e9 = { { 0 } }; /* { dg-warning "braces around scalar initializer" } */
15 /* { dg-warning "near initialization for '\\\\U000000e9\\.\\\\U000000e1'" "UCN diag" { target *-*-* } 14 } */