summary refs log tree commit diff stats
path: root/tests/method/mmultim3.nim
blob: 3139a80899e105c57b8e7fd5720b402a36ddc12c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
type
    TObj* = object {.inheritable.}

var myObj* : ref TObj

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

proc testMyObj*() =
    test123(myObj)