mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-21 23:05:27 +00:00
Merge pull request #8996 from LemonBoy/fix-2574
The VM cannot call methods
This commit is contained in:
14
tests/vm/t2574.nim
Normal file
14
tests/vm/t2574.nim
Normal 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
|
||||
Reference in New Issue
Block a user