mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
10 lines
109 B
Nim
10 lines
109 B
Nim
discard """
|
|
line: 7
|
|
errormsg: "expression 'items' cannot be called"
|
|
"""
|
|
|
|
type a = enum b,c,d
|
|
a.items()
|
|
|
|
|