summary refs log tree commit diff stats
path: root/tests/accept/run/tcnstseq.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/accept/run/tcnstseq.nim')
-rwxr-xr-xtests/accept/run/tcnstseq.nim11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/accept/run/tcnstseq.nim b/tests/accept/run/tcnstseq.nim
deleted file mode 100755
index 4f389bb3b..000000000
--- a/tests/accept/run/tcnstseq.nim
+++ /dev/null
@@ -1,11 +0,0 @@
-# Test the new implicit conversion from sequences to arrays in a constant
-# context.
-
-import strutils
-
-const
-  myWords = "Angelika Anne Anna Anka Anja".split()
-  
-for x in items(myWords): 
-  write(stdout, x) #OUT AngelikaAnneAnnaAnkaAnja
-