Files
Nim/tests/implicit/timplictderef.nim
2014-01-13 02:10:03 +01:00

19 lines
250 B
Nim

discard """
output: "2"
"""
type
TValue* {.pure, final.} = object of TObject
a: int
PValue = ref TValue
PPValue = ptr PValue
var x: PValue
new x
var sp: PPValue = addr x
sp.a = 2
if sp.a == 2: echo 2 # with sp[].a the error is gone