summary refs log tree commit diff stats
path: root/tests/run/tvarres1.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/tvarres1.nim')
-rw-r--r--tests/run/tvarres1.nim15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/run/tvarres1.nim b/tests/run/tvarres1.nim
deleted file mode 100644
index a48c961df..000000000
--- a/tests/run/tvarres1.nim
+++ /dev/null
@@ -1,15 +0,0 @@
-discard """
-  output: "45"
-"""
-
-var
-  g = 5
-
-proc p(): var int = 
-  var bla = addr(g) #: array [0..7, int]
-  result = bla[]
-  
-p() = 45
-
-echo g
-