blob: 9b54249c6a36f0d675e94fd1e99b958c8354f247 [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Á
#error not defined
#endif
#define m2(\u00c1) Á
int i = m2 (0);