summaryrefslogtreecommitdiff
path: root/tests/examplefiles/Errors.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/examplefiles/Errors.scala')
-rw-r--r--tests/examplefiles/Errors.scala23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/examplefiles/Errors.scala b/tests/examplefiles/Errors.scala
deleted file mode 100644
index 7af70280..00000000
--- a/tests/examplefiles/Errors.scala
+++ /dev/null
@@ -1,23 +0,0 @@
-/* This file /* which is totally legal scala */ will not be highlighted
- correcty by pygments */
-
-object ⌘ {
- val `interface` = """
-A
-"Multiline"
-String
-"""
-
- val foo_+ = "foo plus"
- val foo_⌬⌬ = "double benzene"
-
- // Test some interpolated strings
- val mu = s"${if (true) "a:b" else "c" {with "braces"}}"
- val mu2 = f"${if (true) "a:b" else "c" {with "braces"}}"
- val raw = raw"a raw\nstring\"with escaped quotes"
-
- def main(argv: Array[String]) {
- println(⌘.interface + " " + foo_+ + " " + foo_⌬⌬ )
- }
-}
-