aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gm2/pim/pass/goodprocint.mod
blob: 2ace57862454b553b1ec0c711f506d71e53ea52b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
MODULE goodprocint ;

FROM NumberIO IMPORT WriteCard ;
FROM StrIO IMPORT WriteString, WriteLn ;

PROCEDURE func () : INTEGER ;
BEGIN
   RETURN 42
END func ;

BEGIN
   WriteString ('the value is: ') ; WriteCard (func (), 5) ; WriteLn
END goodprocint.