summary refs log tree commit diff stats
path: root/tests/run/tnewderef.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/tnewderef.nim')
-rwxr-xr-xtests/run/tnewderef.nim11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/run/tnewderef.nim b/tests/run/tnewderef.nim
deleted file mode 100755
index 89dc4c8d1..000000000
--- a/tests/run/tnewderef.nim
+++ /dev/null
@@ -1,11 +0,0 @@
-discard """
-  output: 3
-
-"""
-
-var x: ref int
-new(x)
-x[] = 3
-
-echo x[] 
-