summary refs log tree commit diff stats
path: root/tests/compile/tindent1.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/compile/tindent1.nim')
-rw-r--r--tests/compile/tindent1.nim24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/compile/tindent1.nim b/tests/compile/tindent1.nim
deleted file mode 100644
index 0527b6e57..000000000
--- a/tests/compile/tindent1.nim
+++ /dev/null
@@ -1,24 +0,0 @@
-
-const romanNumbers1 =
-    [
-    ("M", 1000), ("D", 500), ("C", 100),
-    ("L", 50), ("X", 10), ("V", 5), ("I", 1) ]
-
-const romanNumbers2 =
-    [
-    ("M", 1000), ("D", 500), ("C", 100),
-    ("L", 50), ("X", 10), ("V", 5), ("I", 1)
-    ]
-
-const romanNumbers3 =
-  [
-    ("M", 1000), ("D", 500), ("C", 100),
-    ("L", 50), ("X", 10), ("V", 5), ("I", 1)
-  ]
-
-const romanNumbers4 = [
-    ("M", 1000), ("D", 500), ("C", 100),
-    ("L", 50), ("X", 10), ("V", 5), ("I", 1)
-    ]
-
-