repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
ucnid-3.c
blob
746524901c55f408c7d021aac67edef88fc30bf4
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
int
\u00C0
=
1
;
8
int
\u00C1
=
2
;
9
int
\U000000C2
=
3
;
10
int
wh
\u00ff
=
4
;
11
int
a
\u00c4
b
\u0441
\U000003b4e
=
5
;
12
13
int
main
(
void
)
14
{
15
16
if
(
\u00C0
!=
1
)
17
abort
();
18
if
(
\u00c1
!=
2
)
19
abort
();
20
if
(
\u00C2
!=
3
)
21
abort
();
22
if
(
wh
\u00ff
!=
4
)
23
abort
();
24
if
(
a
\u00c4
b
\u0441
\U000003b4e
!=
5
)
25
abort
();
26
27
return
0
;
28
}