OSDN Git Service

* gcc.dg/cpp/cmdlne-dD-M.c: Fix test for makefile rule and remove
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / cpp / ucnid-2.c
1 /* { dg-do run } */
2 /* { dg-options "-std=c99 -fextended-identifiers" } */
3 #include <stdlib.h>
4 #include <string.h>
5
6 #define str(t) #t
7
8 int main (void)
9 {
10   const char s[] = str (\u30b2);
11
12   if (strcmp (s, "\u30b2") != 0)
13     abort ();
14   
15   return 0;
16 }