diff options
Diffstat (limited to 'tests/misc')
-rw-r--r-- | tests/misc/tissue710.nim | 2 | ||||
-rw-r--r-- | tests/misc/tnoop.nim | 7 |
2 files changed, 5 insertions, 4 deletions
diff --git a/tests/misc/tissue710.nim b/tests/misc/tissue710.nim index 3b6d3e5f3..e2cca0024 100644 --- a/tests/misc/tissue710.nim +++ b/tests/misc/tissue710.nim @@ -1,7 +1,7 @@ discard """ file: "tissue710.nim" line: 8 - errorMsg: "attempting to call undeclared routine: '||'" + errorMsg: "attempting to call routine: '||'" """ var sum = 0 for x in 3..1000: diff --git a/tests/misc/tnoop.nim b/tests/misc/tnoop.nim index 1e3fbe6cf..e1e25b44e 100644 --- a/tests/misc/tnoop.nim +++ b/tests/misc/tnoop.nim @@ -1,10 +1,11 @@ discard """ + nimout: ''' + found 'a' of kind 'var'''' file: "tnoop.nim" - line: 11 - errormsg: "attempting to call undeclared routine: 'a'" + line: 12 + errormsg: "attempting to call routine: 'a'" """ - var a: int |