blob: 6719c783f561c1e42e87a2b95985fa0c7fba7051 [file] [log] [blame]
/* { dg-do run } */
/* { dg-options "-std=c99 -fextended-identifiers" } */
#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;
}