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