summaryrefslogtreecommitdiff
path: root/tests/examplefiles/string_delimiters.d
diff options
context:
space:
mode:
Diffstat (limited to 'tests/examplefiles/string_delimiters.d')
-rw-r--r--tests/examplefiles/string_delimiters.d21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/examplefiles/string_delimiters.d b/tests/examplefiles/string_delimiters.d
deleted file mode 100644
index 288aacc2..00000000
--- a/tests/examplefiles/string_delimiters.d
+++ /dev/null
@@ -1,21 +0,0 @@
-import std.stdio;
-
-void main() {
- // Nesting delimited strings
- auto a = q"{foo " {bar} baz}";
- auto b = q"[foo [bar] " baz]";
- auto c = q"(foo " (bar) baz)";
- auto d = q"<foo <bar> " baz>";
- // Non-nesting delimited strings
- auto e = q"/foo " bar/";
- auto f = q"-Another " string-";
- // "heredoc" strings
- auto g = q"FOO
- This is a string!
-FOO";
- // Token strings (only the q{} should be highlighted as a string)
- auto h = q{
- int i;
- void foo() { writefln("Hello, world!"); }
- };
-}