Mercurial > hg > CbC > CbC_gcc
comparison gcc/testsuite/gcc.dg/cpp/ucnid-12-utf8.c @ 145:1830386684a0
gcc-9.2.0
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 11:34:05 +0900 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
131:84e7813d76e9 | 145:1830386684a0 |
---|---|
1 /* Test spelling differences in UCNs in macro definitions still count | |
2 as the same identifier for macro expansion. */ | |
3 /* { dg-do compile } */ | |
4 /* { dg-options "-std=c99 -pedantic-errors" } */ | |
5 | |
6 #define m1\u00c1 | |
7 #ifndef m1Á | |
8 #error not defined | |
9 #endif | |
10 | |
11 #define m2(\u00c1) Á | |
12 | |
13 int i = m2 (0); |