mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
15 lines
203 B
Nim
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
|