Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.dg / ucnid-5-utf8.c
blob43310b6ada9dd8b15aa81a8149e64dff091cb30e
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);
7 int a$b(void) { return 1; }
8 int a$b😀(void) { return 2; }
10 int main (void)
13 if (a$b() != 1)
14 abort ();
16 if (a$b😀() != 2)
17 abort ();
19 return 0;