diff options
Diffstat (limited to 'tests/accept/run/tcnstseq.nim')
-rwxr-xr-x | tests/accept/run/tcnstseq.nim | 11 |
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 - |