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