summary refs log blame commit diff stats
path: root/tests/accept/run/tmultim3.nim
blob: 373c84c0ecac4ebc0e992e84cabaf12cade70725 (plain) (tree)
1
2
3
4



                       













                               

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