mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-04 20:17:42 +00:00
13 lines
206 B
Nim
13 lines
206 B
Nim
discard """
|
|
file: "tnoop.nim"
|
|
line: 11
|
|
errormsg: "expression \'a()\' cannot be called"
|
|
"""
|
|
# Tests the new check in the semantic pass
|
|
|
|
var
|
|
a: int
|
|
|
|
a() #ERROR_MSG expression 'a()' cannot be called
|
|
|