summaryrefslogtreecommitdiff
path: root/test/files/run/t6288.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t6288.scala')
-rw-r--r--test/files/run/t6288.scala32
1 files changed, 24 insertions, 8 deletions
diff --git a/test/files/run/t6288.scala b/test/files/run/t6288.scala
index 9d8fb990d7..cf5865e95a 100644
--- a/test/files/run/t6288.scala
+++ b/test/files/run/t6288.scala
@@ -6,14 +6,30 @@ object Test extends DirectTest {
override def extraSettings: String = "-usejavacp -Xprint:patmat -Xprint-pos -d " + testOutput.path
override def code =
- """
- |object Case3 {
- | def unapply(z: Any): Option[Int] = Some(-1)
- |
- | "" match {
- | case Case3(nr) => ()
- | }
- |}""".stripMargin.trim
+ """
+ |object Case3 {
+ | def unapply(z: Any): Option[Int] = Some(-1)
+ |
+ | "" match {
+ | case Case3(nr) => ()
+ | }
+ |}
+ |object Case4 {
+ | def unapplySeq(z: Any): Option[List[Int]] = None
+ |
+ | "" match {
+ | case Case4(nr) => ()
+ | }
+ |}
+ |object Case5 {
+ | def unapply(z: Any): Boolean = true
+ |
+ | "" match {
+ | case Case4() => ()
+ | }
+ |}
+ |
+ |""".stripMargin.trim
override def show(): Unit = {
// Now: [84][84]Case3.unapply([84]x1);