Files
Nim/tests/vm/t2574.nim
2018-12-11 21:23:21 +01:00

15 lines
203 B
Nim

discard """
errormsg: "cannot call method eval at compile time"
line: 14
"""
type
PExpr = ref object of RootObj
method eval(e: PExpr): int =
discard
static:
let x = PExpr()
discard x.eval