diff options
author | Matth?us G. Chajdas <dev@anteru.net> | 2019-11-10 13:56:53 +0100 |
---|---|---|
committer | Matth?us G. Chajdas <dev@anteru.net> | 2019-11-10 13:56:53 +0100 |
commit | 1dd3124a9770e11b6684e5dd1e6bc15a0aa3bc67 (patch) | |
tree | 87a171383266dd1f64196589af081bc2f8e497c3 /tests/examplefiles/Errors.scala | |
parent | f1c080e184dc1bbc36eaa7cd729ff3a499de568a (diff) | |
download | pygments-master.tar.gz |
Diffstat (limited to 'tests/examplefiles/Errors.scala')
-rw-r--r-- | tests/examplefiles/Errors.scala | 23 |
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_⌬⌬ ) - } -} - |