OSDN Git Service

./:
[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
6 int a __attribute__((__mode__(\u00e9))); /* { dg-error "unknown machine mode '\\\\U000000e9'" } */
7 struct s1 { int \u00e9 : 0; }; /* { dg-error "zero width for bit-field '\\\\U000000e9'" } */
8
9 void f (int b) { int \u00e9[b]; } /* { dg-warning "variable length array '\\\\U000000e9'" } */
10
11 void g (static int \u00e9); /* { dg-error "storage class specified for parameter '\\\\U000000e9'" } */
12
13 struct s2 { int \u00e1; } \u00e9 = { { 0 } }; /* { dg-warning "braces around scalar initializer" } */
14 /* { dg-warning "near initialization for '\\\\U000000e9\\.\\\\U000000e1'" "UCN diag" { target *-*-* } 13 } */