Files
Nim/tests/modules/tambig_range.nim
Julian Fondren 6dfde0e931 fix test expecting ambiguous-identifier error
the test is only against the first line, but testament doens't
support multi-line error messages yet.
2019-04-29 23:15:10 -05:00

14 lines
188 B
Nim

discard """
errormsg: "ambiguous identifier: 'range' -- use one of the following:"
line: "13"
"""
import mrange
# bug #6965
type SomeObj = object
s: set[int8]
# bug #6726
range()