mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
19 lines
140 B
Nim
19 lines
140 B
Nim
discard """
|
|
output: '''
|
|
abc
|
|
xyz
|
|
B.foo
|
|
'''
|
|
"""
|
|
|
|
# bug #1595, #1612
|
|
|
|
import mexport2a
|
|
|
|
proc main() =
|
|
printAbc()
|
|
printXyz()
|
|
|
|
main()
|
|
foo(3)
|