scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | README | LICENSE

0259-multichar.c (157B)


      1 
      2 int
      3 main(void)
      4 {
      5 	int a = L'\u00a1';
      6 
      7 	if (a != 0xa1)
      8 		return 1;
      9 	if (L'\u00a1' != 0xa1)
     10 		return 2;
     11 	if (L'\U000000b1' != 0xb1)
     12 		return 3;
     13 
     14 	return 0;
     15 }