1  /* { dg-do run } */
       2  /* { dg-options "-std=c99" } */
       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  }