mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
10 lines
104 B
Nim
10 lines
104 B
Nim
discard """
|
|
line: 7
|
|
errormsg: "undeclared identifier: 'items'"
|
|
"""
|
|
|
|
type a = enum b,c,d
|
|
a.items()
|
|
|
|
|