summary refs log tree commit diff stats
path: root/tests/method/tmultim8.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/method/tmultim8.nim')
-rw-r--r--tests/method/tmultim8.nim19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/method/tmultim8.nim b/tests/method/tmultim8.nim
deleted file mode 100644
index 0d067b668..000000000
--- a/tests/method/tmultim8.nim
+++ /dev/null
@@ -1,19 +0,0 @@
-
-# bug #3550
-
-type 
-  BaseClass = ref object of RootObj
-  Class1 = ref object of BaseClass
-  Class2 = ref object of BaseClass
-  
-method test(obj: Class1, obj2: BaseClass) =
-  discard
-
-method test(obj: Class2, obj2: BaseClass) =
-  discard
-  
-var obj1 = Class1()
-var obj2 = Class2()
-
-obj1.test(obj2) 
-obj2.test(obj1)