aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/cpp/ucnid-12.c
blob: 2932768607f50dcb0559f95acf9d1d1cb20a6ad4 (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\u00C1
#error not defined
#endif

#define m2(\u00c1) \u00C1

int i = m2 (0);