mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-25 22:06:14 +00:00
14 lines
153 B
Nim
14 lines
153 B
Nim
discard """
|
|
file: "tambsys.nim"
|
|
output: ""
|
|
"""
|
|
# Test ambiguous symbols
|
|
|
|
import mambsys1, mambsys2
|
|
|
|
var
|
|
v: mambsys1.TExport
|
|
mambsys2.foo(3) #OUT
|
|
|
|
|