comparison gcc/testsuite/gcc.dg/ucnid-2-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 /* { dg-do run } */
2 /* { dg-xfail-if "" { powerpc-ibm-aix* } } */
3 /* { dg-skip-if "" { ! ucn } } */
4 /* { dg-options "-std=c99 -g" } */
5 void abort (void);
6
7 static int À = 1;
8 static int Á = 2;
9 static int  = 3;
10 static int whÿ = 4;
11 static int aÄbсδe = 5;
12
13 int main (void)
14 {
15
16 if (À != 1)
17 abort ();
18 if (Á != 2)
19 abort ();
20 if (Â != 3)
21 abort ();
22 if (whÿ != 4)
23 abort ();
24 if (aÄbсδe != 5)
25 abort ();
26
27 return 0;
28 }