summary refs log tree commit diff stats
path: root/tests/vm/tnilclosurecall.nim
blob: 449865b9c2fc210cf191acd331e378758adb9c67 (plain) (blame)
1
2
3
4
5
6
7
8
discard """
  errormsg: "attempt to call nil closure"
  line: 8
"""

static:
  let x: proc () = nil
  x()