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