aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/cpp/ucnid-12-utf8.c
blob: 9b54249c6a36f0d675e94fd1e99b958c8354f247 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Test spelling differences in UCNs in macro definitions still count
   as the same identifier for macro expansion.  */
/* { dg-do compile } */
/* { dg-options "-std=c99 -pedantic-errors" } */

#define m1\u00c1
#ifndef m1Á
#error not defined
#endif

#define m2(\u00c1) Á

int i = m2 (0);