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