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 5999a8073..000000000
--- a/tests/compile/toop.nim
+++ /dev/null
@@ -1,21 +0,0 @@
-discard """
-  output: "b"
-"""
-
-type
-  TA = object
-    x, y: int
-  
-  TB = object of TA
-    z: int
-    
-  TC = object of TB
-    whatever: string
-  
-proc p(a: var TA) = echo "a"
-proc p(b: var TB) = echo "b"
-
-var c: TC
-
-p(c)
-