mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-04 12:07:51 +00:00
16 lines
211 B
Nim
16 lines
211 B
Nim
discard """
|
|
file: "tambsym3.nim"
|
|
line: 11
|
|
errormsg: "ambiguous identifier"
|
|
"""
|
|
# Test ambiguous symbols
|
|
|
|
import mambsym1, times
|
|
|
|
var
|
|
v = mDec #ERROR_MSG ambiguous identifier
|
|
|
|
writeLine(stdout, ord(v))
|
|
|
|
|