(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
cpp/
ucnid-1-utf8.c
       1  /* { dg-do run } */
       2  /* { dg-options "-std=c99 -g3" } */
       3  void abort (void);
       4  
       5  #define À 1
       6  #define Á 2
       7  #define  3
       8  #define whÿ 4
       9  #define aÄbсδe 5
      10  
      11  int main (void)
      12  {
      13    
      14    if (À != 1)
      15      abort ();
      16    if (Á != 2)
      17      abort ();
      18    if (Â != 3)
      19      abort ();
      20    if (whÿ != 4)
      21      abort ();
      22    if (aÄbсδe != 5)
      23      abort ();
      24    
      25    return 0;
      26  }