Merge pull request #8996 from LemonBoy/fix-2574

The VM cannot call methods
This commit is contained in:
Andreas Rumpf
2018-09-18 10:29:49 +02:00
committed by GitHub
2 changed files with 17 additions and 0 deletions

14
tests/vm/t2574.nim Normal file
View File

@@ -0,0 +1,14 @@
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