summaryrefslogtreecommitdiff
path: root/test/files/pos/t1133.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t1133.scala')
-rw-r--r--test/files/pos/t1133.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/pos/t1133.scala b/test/files/pos/t1133.scala
index 4538de5f5f..562b528ea3 100644
--- a/test/files/pos/t1133.scala
+++ b/test/files/pos/t1133.scala
@@ -8,21 +8,21 @@ object Match
case _ => println("fail")
}
}
-
+
object Extractor1 {
def unapply(x: Any) = x match {
case x: String => Some(x, x+x, x+x+x, x+x, x)
case _ => None
}
}
-
+
object Extractor2 {
def unapply(x: Any) = x match {
case x: String => Some(x, x+x, x+x+x)
case _ => None
}
}
-
+
object Extractor3 {
def unapply(x: Any) = x match {
case x: String => Some(x, x, x)