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











                              
type
    TObj* = object

var myObj* : ref TObj

method test123(a : ref TObj) =
    echo("Hi base!")

proc testMyObj*() =
    test123(myObj)