Files
Nim/tests/run/tmultim3.nim
2011-11-19 15:45:51 +01:00

21 lines
222 B
Nim
Executable File

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()