mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-05 04:27:44 +00:00
fixes #24057 Instead of crashing the compiler, the VM now gives a stacktrace if a nil closure is attempted to be called.
9 lines
106 B
Nim
9 lines
106 B
Nim
discard """
|
|
errormsg: "attempt to call nil closure"
|
|
line: 8
|
|
"""
|
|
|
|
static:
|
|
let x: proc () = nil
|
|
x()
|