summary refs log tree commit diff stats
path: root/tests/accept/compile/toop.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/accept/compile/toop.nim')
-rw-r--r--tests/accept/compile/toop.nim18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/accept/compile/toop.nim b/tests/accept/compile/toop.nim
deleted file mode 100644
index d103c6304..000000000
--- a/tests/accept/compile/toop.nim
+++ /dev/null
@@ -1,18 +0,0 @@
-
-type
-  TA = object
-    x, y: int
-  
-  TB = object of TA
-    z: int
-    
-  TC = object of TB
-    whatever: string
-  
-proc p(a: var TA) = nil
-proc p(b: var TB) = nil
-
-var c: TC
-
-p(c)
-