summary refs log tree commit diff stats
path: root/tests/compile/toop.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/compile/toop.nim')
-rwxr-xr-xtests/compile/toop.nim21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/compile/toop.nim b/tests/compile/toop.nim
deleted file mode 100755
index db6d9e595..000000000
--- a/tests/compile/toop.nim
+++ /dev/null
@@ -1,21 +0,0 @@
-discard """
-  disabled: true
-"""
-
-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)
-