summary refs log tree commit diff stats
path: root/tests/constructors/t5965_2.nim
blob: e04f1b7157f3a8652f716a39f7cece30ce619ce7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
discard """
  errormsg: "incorrect object construction syntax"
  file: "t5965_2.nim"
  line: 10
"""

type Foo = object
  a: int

discard Foo(a: 1, 2)