Files
Nim/tests/constructors/t5965_1.nim
2017-08-14 17:43:39 +02:00

11 lines
156 B
Nim

discard """
file: "t5965_1.nim"
line: 10
errormsg: "incorrect object construction syntax"
"""
type Foo = object
a, b, c: int
discard Foo(a: 1, 2)