summary refs log tree commit diff stats
path: root/tests/accept/run/tmultim3.nim
blob: a3271d8d963998aa009ecded1b0e4f4239c7237f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import mmultim3

type
    TBObj* = object of TObj


method test123(a : ref TBObj) =
    echo("Hi derived!")

var a : ref TBObj
new(a)
myObj = a
testMyObj()