aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t6549.check
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t6549.check')
-rw-r--r--tests/pending/run/t6549.check28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/pending/run/t6549.check b/tests/pending/run/t6549.check
new file mode 100644
index 000000000..be3445927
--- /dev/null
+++ b/tests/pending/run/t6549.check
@@ -0,0 +1,28 @@
+Type in expressions to have them evaluated.
+Type :help for more information.
+
+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> :quit