mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-31 10:22:15 +00:00
14 lines
158 B
Nim
14 lines
158 B
Nim
discard """
|
|
nimout: '''
|
|
found 'a' of kind 'var'
|
|
'''
|
|
file: "tnoop.nim"
|
|
line: 13
|
|
errormsg: "attempting to call routine: 'a'"
|
|
"""
|
|
|
|
var
|
|
a: int
|
|
|
|
a()
|