summary refs log tree commit diff stats
path: root/tests/accept/run/tcgbug.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/accept/run/tcgbug.nim')
-rwxr-xr-xtests/accept/run/tcgbug.nim17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/accept/run/tcgbug.nim b/tests/accept/run/tcgbug.nim
deleted file mode 100755
index 320821fb6..000000000
--- a/tests/accept/run/tcgbug.nim
+++ /dev/null
@@ -1,17 +0,0 @@
-
-type
-  TObj = object
-    x, y: int
-  PObj = ref TObj
-
-proc p(a: PObj) =
-  a.x = 0
-
-proc q(a: var PObj) =
-  a.p()
-
-var 
-  a: PObj
-new(a)
-q(a)
-