mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-03 11:42:33 +00:00
16 lines
195 B
Nim
16 lines
195 B
Nim
discard """
|
|
file: "tambsym.nim"
|
|
line: 11
|
|
errormsg: "ambiguous identifier"
|
|
"""
|
|
# Test ambiguous symbols
|
|
|
|
import mambsym1, mambsym2
|
|
|
|
var
|
|
v: TExport #ERROR_MSG ambiguous identifier
|
|
|
|
v = y
|
|
|
|
|