mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
21 lines
222 B
Nim
21 lines
222 B
Nim
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()
|
|
|
|
|
|
|