summaryrefslogtreecommitdiff
path: root/test/files/run/t6549.check
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2012-12-03 21:58:36 +0100
committerJason Zaugg <jzaugg@gmail.com>2012-12-03 23:42:42 +0100
commit90c87fc266ec45e8970f6ea0f00d375b63afd35d (patch)
treeb575b8839594186277a53cf75d7fd4fa79faa765 /test/files/run/t6549.check
parentfd57069a3a49de1757a518b573a0cd8cb98bbbd5 (diff)
downloadscala-90c87fc266ec45e8970f6ea0f00d375b63afd35d.tar.gz
scala-90c87fc266ec45e8970f6ea0f00d375b63afd35d.tar.bz2
scala-90c87fc266ec45e8970f6ea0f00d375b63afd35d.zip
SI-6549 Improve escaping in REPL codegen.
- Escape the LHS of an assign when printing results - e.g. X("").foo = bar - Escape val names - e.g. val `"` = 0`
Diffstat (limited to 'test/files/run/t6549.check')
-rw-r--r--test/files/run/t6549.check32
1 files changed, 32 insertions, 0 deletions
diff --git a/test/files/run/t6549.check b/test/files/run/t6549.check
new file mode 100644
index 0000000000..bc78aac741
--- /dev/null
+++ b/test/files/run/t6549.check
@@ -0,0 +1,32 @@
+Type in expressions to have them evaluated.
+Type :help for more information.
+
+scala>
+
+scala> case class `X"`(var xxx: Any)
+defined class X$u0022
+
+scala> val m = Map(("": Any) -> `X"`("\""), ('s: Any) -> `X"`("\""))
+m: scala.collection.immutable.Map[Any,X"] = Map("" -> X"("), 's -> X"("))
+
+scala> m("")
+res0: X" = X"(")
+
+scala> m("").xxx
+res1: Any = "
+
+scala> m("").xxx = 0
+m("").xxx: Any = 0
+
+scala> m("").xxx = "\""
+m("").xxx: Any = "
+
+scala> m('s).xxx = 's
+m(scala.Symbol("s")).xxx: Any = 's
+
+scala> val `"` = 0
+": Int = 0
+
+scala>
+
+scala>