aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gm2/iso/pass/callwraptime.mod
blob: 387a3e55e1e5ff7e054e40181405290276cbfe8e (plain)
1
2
3
4
5
6
7
8
9
10
11
MODULE callwraptime ;

FROM wraptime IMPORT tm, InitTM, GetMonth ;

VAR
   m: tm ;
   month: [1..12] ;
BEGIN
   m := InitTM () ;
   month := GetMonth (m)
END callwraptime.