aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/ucnid-1-utf8.c
blob: 72136737b62e7888a6263964803df7af3bfbbdab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* { dg-do run } */
/* { dg-options "-std=c99 -g" } */
void abort (void);

int main (void)
{
  int À = 1;
  int Á = 2;
  int  = 3;
  int whÿ = 4;
  int aÄbсδe = 5;
  
  if (À != 1)
    abort ();
  if (Á != 2)
    abort ();
  if (Â != 3)
    abort ();
  if (whÿ != 4)
    abort ();
  if (aÄbсδe != 5)
    abort ();
  
  return 0;
}