summaryrefslogtreecommitdiff
path: root/test/files/run/t3353.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t3353.scala')
-rw-r--r--test/files/run/t3353.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/files/run/t3353.scala b/test/files/run/t3353.scala
new file mode 100644
index 0000000000..eeb63c1b05
--- /dev/null
+++ b/test/files/run/t3353.scala
@@ -0,0 +1,10 @@
+object Test extends App {
+
+ "foo" match {
+ case Matcher(result) => println(result)
+ }
+
+ object Matcher{
+ def unapply(s: String)(implicit secondParam: Option[String] = None) = Some("Got: " + s + " and " + secondParam)
+ }
+}