aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gm2/iso/const/fail/testlength.mod
blob: c3f126b0079d5150882c2ebef9406b09036b8225 (plain)
1
2
3
4
5
6
7
8
9
10
11
MODULE testlength ;

PROCEDURE bar (a: ARRAY OF CHAR) ;
CONST
   foo = LENGTH (a) ;
BEGIN
END bar ;

BEGIN
   bar ("hello")
END testlength.