Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gm2
/
examples
/
cppcallingm2
/
run
/
pass
/
c.mod
blob: 4cdfdd9bec7bde4cfe523506899cb3ef448f9979 [
file
]
IMPLEMENTATION MODULE c
;
IMPORT b
;
FROM libc IMPORT printf
;
BEGIN
printf
(
"init: module c\n"
)
FINALLY
printf
(
"finish: module c\n"
)
END
c
.