Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gcc.dg / ucnid-14-utf8.c
blobe781ed6b4ed0c24100a20621321830b05cf6768b
1 /* Test miscellaneous uses of UTF-8 in identifiers compile and run OK,
2 with debug info enabled. */
3 /* { dg-do run } */
4 /* { dg-options "-std=c99 -g" } */
6 extern void abort (void);
7 extern void exit (int);
9 int
10 main (void)
12 struct À { int Á; } x;
13 struct À *y = &x;
14 y->Á = 1;
15 if (x.Á != 1)
16 abort ();
17 goto ÿ;
18 ÿ: ;
19 enum e { Â = 4 };
20 if (Â != 4)
21 abort ();
22 exit (0);