No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / gcc.dg / cpp / ucnid-2.c
blob6719c783f561c1e42e87a2b95985fa0c7fba7051
1 /* { dg-do run } */
2 /* { dg-options "-std=c99 -fextended-identifiers" } */
3 #include <stdlib.h>
4 #include <string.h>
6 #define str(t) #t
8 int main (void)
10 const char s[] = str (\u30b2);
12 if (strcmp (s, "\u30b2") != 0)
13 abort ();
15 return 0;