blob: 9557ce729b9a05fc16fb9dd26203db7cf7a84f22 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# Module B
import trecmod2
proc p*(x: trecmod2.T1): trecmod2.T1 =
# this works because the compiler has already
# added T1 to trecmod2's interface symbol table
return x + 1
|