Files
Nim/tests/objects/toop.nim
2018-07-05 19:14:18 +02:00

22 lines
226 B
Nim

discard """
output: "b"
"""
type
TA = object of RootObj
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)