mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 08:54:53 +00:00
* fixes #17437 * Fix bug reference comment Co-authored-by: Timothee Cour <timothee.cour2@gmail.com> * [skip ci] describe why we have hasError Co-authored-by: Timothee Cour <timothee.cour2@gmail.com>
23 lines
532 B
Nim
23 lines
532 B
Nim
discard """
|
|
cmd: "nim check $file"
|
|
errormsg: ""
|
|
nimout: '''
|
|
t17437.nim(20, 16) Error: undeclared identifier: 'x'
|
|
t17437.nim(20, 16) Error: expression 'x' has no type (or is ambiguous)
|
|
t17437.nim(20, 19) Error: incorrect object construction syntax
|
|
t17437.nim(20, 19) Error: incorrect object construction syntax
|
|
t17437.nim(20, 12) Error: expression '' has no type (or is ambiguous)
|
|
'''
|
|
"""
|
|
|
|
# bug #17437 invalid object construction should result in error
|
|
|
|
type
|
|
V = ref object
|
|
x, y: int
|
|
|
|
proc m =
|
|
var v = V(x: x, y)
|
|
|
|
m()
|