aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/cpp/ucnid-1-utf8.c
blob: 9100b980960eb3a9c4cc274f2ce9db275ffb9e00 (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
26
/* { dg-do run } */
/* { dg-options "-std=c99 -g3" } */
void abort (void);

#define À 1
#define Á 2
#define  3
#define whÿ 4
#define aÄbсδe 5

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