aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gm2/iso/fail/conststrarray2.mod
blob: ab101d4a95bfbf35e45cb79bb93721253d7d1a7d (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
27
28
29
30
MODULE conststrarray2 ;

FROM libc IMPORT printf, exit ;

CONST
   HelloWorld = Hello + " " + World ;
   Hello = "Hello" ;
   World = "World" ;


(*
   Assert - 
*)

PROCEDURE Assert (result: BOOLEAN) ;
BEGIN
   IF NOT result
   THEN
      printf ("assertion failed\n") ;
      exit (1)
   END
END Assert ;


VAR
   ch: CHAR ;
BEGIN
   ch := HelloWorld[4] ;
   Assert (ch = 'o')
END conststrarray2.