mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
11 lines
150 B
Nim
11 lines
150 B
Nim
discard """
|
|
errormsg: "incorrect object construction syntax"
|
|
file: "t5965_2.nim"
|
|
line: 10
|
|
"""
|
|
|
|
type Foo = object
|
|
a: int
|
|
|
|
discard Foo(a: 1, 2)
|