view gcc/testsuite/gcc.dg/ucnid-14.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* Test miscellaneous uses of UCNs 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 \u00C0 { int \u00C1; } x;
  struct \u00C0 *y = &x;
  y->\u00C1 = 1;
  if (x.\U000000C1 != 1)
    abort ();
  goto \u00ff;
 \u00ff: ;
  enum e { \u00C2 = 4 };
  if (\u00C2 != 4)
    abort ();
  exit (0);
}