summary refs log tree commit diff stats
path: root/tests/run/tvardecl.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/tvardecl.nim')
-rw-r--r--tests/run/tvardecl.nim15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/run/tvardecl.nim b/tests/run/tvardecl.nim
deleted file mode 100644
index 5cc6f4960..000000000
--- a/tests/run/tvardecl.nim
+++ /dev/null
@@ -1,15 +0,0 @@
-discard """
-  file: "tvardecl.nim"
-  output: "44"
-"""
-# Test the new variable declaration syntax

-

-var

-  x = 0

-  s = "Hallo"

-  a, b: int = 4

-

-write(stdout, a)

-write(stdout, b) #OUT 44

-
-