diff options
Diffstat (limited to 'tests/accept/run/tstrlits.nim')
-rwxr-xr-x | tests/accept/run/tstrlits.nim | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/accept/run/tstrlits.nim b/tests/accept/run/tstrlits.nim deleted file mode 100755 index 48ae08212..000000000 --- a/tests/accept/run/tstrlits.nim +++ /dev/null @@ -1,14 +0,0 @@ -# Test the new different string literals - -const - tripleEmpty = """"long string"""""""" # "long string """"" - - rawQuote = r"a""" - - raw = r"abc""def" - -stdout.write(rawQuote) -stdout.write(tripleEmpty) -stdout.write(raw) -#OUT a""long string"""""abc"def - |