Files
Nim/tests/objects/toop.nim
2014-01-22 17:32:38 +01:00

22 lines
234 B
Nim

discard """
output: "b"
"""
type
TA = object of TObject
x, y: int
TB = object of TA
z: int
TC = object of TB
whatever: string
proc p(a: var TA) = echo "a"
proc p(b: var TB) = echo "b"
var c: TC
p(c)