summaryrefslogtreecommitdiff
path: root/test/files/pos/t8429.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t8429.scala')
-rw-r--r--test/files/pos/t8429.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/pos/t8429.scala b/test/files/pos/t8429.scala
new file mode 100644
index 0000000000..a2d32637e1
--- /dev/null
+++ b/test/files/pos/t8429.scala
@@ -0,0 +1,7 @@
+trait Must { def musta(str: String, i: Int): Unit }
+
+object Mustare {
+ def takesM(m: Must) = ???
+ takesM{ (a, b) => println } // ok
+ takesM{ case (a: String, b: Int) => println("") } // should also be accepted
+}