summary refs log tree commit diff stats
path: root/tests/accept/run/tmultim3.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/accept/run/tmultim3.nim')
-rwxr-xr-xtests/accept/run/tmultim3.nim14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/accept/run/tmultim3.nim b/tests/accept/run/tmultim3.nim
deleted file mode 100755
index a3271d8d9..000000000
--- a/tests/accept/run/tmultim3.nim
+++ /dev/null
@@ -1,14 +0,0 @@
-import mmultim3
-
-type
-    TBObj* = object of TObj
-
-
-method test123(a : ref TBObj) =
-    echo("Hi derived!")
-
-var a : ref TBObj
-new(a)
-myObj = a
-testMyObj()
-