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

type Foo = object
  a, b, c: int

discard Foo(a: 1, 2)