mirror of
https://github.com/nim-lang/Nim.git
synced 2026-05-02 12:04:44 +00:00
fixes existing tests
This commit is contained in:
@@ -1,15 +1,3 @@
|
||||
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
|
||||
@@ -17,6 +5,8 @@ type
|
||||
x, y: int
|
||||
|
||||
proc m =
|
||||
var x = 12
|
||||
var y = 1
|
||||
var v = V(x: x, y)
|
||||
|
||||
m()
|
||||
|
||||
Reference in New Issue
Block a user