summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2013-08-16 11:40:49 -0700
committerAdriaan Moors <adriaan.moors@typesafe.com>2013-08-16 11:40:49 -0700
commit01f2c2ac45a15312bd45193fd6302b7b01de9db7 (patch)
tree0764a30564ee83f05c7358643fed4bfbded64d16 /test/files/run
parent1b9c8d042cdd83dc48d24300c347302bd27def8f (diff)
parent67d94f681fe17b18bb9ba1a3cec0a15a48bc3251 (diff)
downloadscala-01f2c2ac45a15312bd45193fd6302b7b01de9db7.tar.gz
scala-01f2c2ac45a15312bd45193fd6302b7b01de9db7.tar.bz2
scala-01f2c2ac45a15312bd45193fd6302b7b01de9db7.zip
Merge pull request #2823 from som-snytt/issue/7715
SI-7715 String inpatternation s"$_" for s"${_}"
Diffstat (limited to 'test/files/run')
-rw-r--r--test/files/run/t7715.check3
-rw-r--r--test/files/run/t7715.scala24
2 files changed, 27 insertions, 0 deletions
diff --git a/test/files/run/t7715.check b/test/files/run/t7715.check
new file mode 100644
index 0000000000..592d7fe2ea
--- /dev/null
+++ b/test/files/run/t7715.check
@@ -0,0 +1,3 @@
+6
+4
+4
diff --git a/test/files/run/t7715.scala b/test/files/run/t7715.scala
new file mode 100644
index 0000000000..0ad3913016
--- /dev/null
+++ b/test/files/run/t7715.scala
@@ -0,0 +1,24 @@
+
+import PartialFunction.cond
+import util._
+
+object Test extends App {
+
+ object I { def unapply(x: String): Option[Int] = Try(x.toInt).toOption }
+ implicit class RX(val sc: StringContext) {
+ def rx = sc.parts.mkString("(.+)").r
+ }
+
+ Console println ("2 by 4" match {
+ case rx"${I(a)} by ${I(b)}" => a+b
+ case _ => -1
+ })
+ Console println ("2 by 4" match {
+ case rx"${_} by ${I(b)}" => b // pattern placeholder
+ case _ => -1
+ })
+ Console println ("2 by 4" match {
+ case rx"$_ by ${I(b)}" => b // is permitted this way, too
+ case _ => -1
+ })
+}