mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
14 lines
188 B
Nim
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()
|