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

21 lines
222 B
Nim

discard """
file: "tmultim3.nim"
output: "Hi derived!"
"""
import mmultim3
type
TBObj* = object of TObj
method test123(a : ref TBObj) =
echo("Hi derived!")
var a : ref TBObj
new(a)
myObj = a
testMyObj()