comparison gcc/testsuite/gcc.dg/ucnid-8-utf8.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
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 -Wvla" } */
5 /* { dg-require-ascii-locale "" } */
6 /* { dg-skip-if "" { powerpc-ibm-aix* } } */
7
8 int a __attribute__((__mode__(é))); /* { dg-error "unknown machine mode '\\\\U000000e9'" } */
9 struct s1 { int é : 0; }; /* { dg-error "zero width for bit-field '\\\\U000000e9'" } */
10
11 void f (int b) { int é[b]; } /* { dg-warning "variable length array '\\\\U000000e9'" } */
12
13 void g (static int é); /* { dg-error "storage class specified for parameter '\\\\U000000e9'" } */
14
15 struct s2 { int á; } é = { { 0 } }; /* { dg-warning "braces around scalar initializer" } */
16 /* { dg-message "near initialization for '\\\\U000000e9\\.\\\\U000000e1'" "UCN diag" { target *-*-* } .-1 } */