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-5-utf8.c
blob
43310b6ada9dd8b15aa81a8149e64dff091cb30e
1
/* { dg-do run } */
2
/* { dg-skip-if "No dollar in identifiers" { avr-*-* powerpc-ibm-aix* } } */
3
/* { dg-skip-if "" { ! ucn } } */
4
/* { dg-options "-std=c99 -fdollars-in-identifiers -g" } */
5
void
abort
(
void
);
6
7
int
a$
b
(
void
) {
return
1
; }
8
int
a$b😀
(
void
) {
return
2
; }
9
10
int
main
(
void
)
11
{
12
13
if
(
a$
b
() !=
1
)
14
abort
();
15
16
if
(
a$b😀
() !=
2
)
17
abort
();
18
19
return
0
;
20
}