blob: bd0f41717c0d9bbb3177a8464ef4ad30e9736425 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
discard """
errormsg: "ambiguous identifier"
file: "tambsym.nim"
line: 11
"""
# Test ambiguous symbols
import mambsym1, mambsym2
var
v: TExport #ERROR_MSG ambiguous identifier
v = y
|