blob: e781ed6b4ed0c24100a20621321830b05cf6768b [file] [log] [blame]
/* Test miscellaneous uses of UTF-8 in identifiers compile and run OK,
with debug info enabled. */
/* { dg-do run } */
/* { dg-options "-std=c99 -g" } */
extern void abort (void);
extern void exit (int);
int
main (void)
{
struct À { int Á; } x;
struct À *y = &x;
y->Á = 1;
if (x != 1)
abort ();
goto ÿ;
ÿ: ;
enum e { Â = 4 };
if != 4)
abort ();
exit (0);
}