summary refs log tree commit diff stats
path: root/tests/run/tstrlits.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/tstrlits.nim')
-rwxr-xr-xtests/run/tstrlits.nim20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/run/tstrlits.nim b/tests/run/tstrlits.nim
deleted file mode 100755
index 1cd43975a..000000000
--- a/tests/run/tstrlits.nim
+++ /dev/null
@@ -1,20 +0,0 @@
-discard """
-  file: "tstrlits.nim"
-  output: "a\"\"long string\"\"\"\"\"abc\"def"
-"""
-# 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
-
-
-