blob: 616680a969ee0d1066f641b0944215cd26553aaa [file] [log] [blame]
/* { dg-do run } */
/* { dg-options "-std=c99" } */
#include <stdlib.h>
#include <string.h>
#define str(t) #t
int main (void)
{
const char s[] = str (\u30b2);
if (strcmp (s, "\u30b2") != 0)
abort ();
return 0;
}