1 /* { dg-do run } */
2 /* { dg-options "-std=c99" } */
3 #include <stdlib.h>
4 #include <string.h>
5 
6 #define str(t) #t
7 
main(void)8 int main (void)
9 {
10   const char s[] = str (ゲ);
11 
12   if (strcmp (s, "ゲ") != 0)
13     abort ();
14 
15   return 0;
16 }
17