mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
14 lines
254 B
Nim
14 lines
254 B
Nim
discard """
|
|
output: "4"
|
|
"""
|
|
type
|
|
T1* = int # Module A exports the type ``T1``
|
|
|
|
import mrecmod2 # the compiler starts parsing B
|
|
# the manual says this should work
|
|
proc main() =
|
|
echo p(3) # works because B has been parsed completely here
|
|
|
|
main()
|
|
|