Document gcov-io (PR gcov-profile/84735).
[official-gcc.git] / gcc / testsuite / gcc.dg / cpp / ucnid-12.c
blob2932768607f50dcb0559f95acf9d1d1cb20a6ad4
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" } */
6 #define m1\u00c1
7 #ifndef m1\u00C1
8 #error not defined
9 #endif
11 #define m2(\u00c1) \u00C1
13 int i = m2 (0);