blob: 2932768607f50dcb0559f95acf9d1d1cb20a6ad4 [file] [log] [blame]
/* 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);