aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t1133.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/t1133.scala')
-rw-r--r--tests/pos/t1133.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/pos/t1133.scala b/tests/pos/t1133.scala
index 562b528ea..2e4793e99 100644
--- a/tests/pos/t1133.scala
+++ b/tests/pos/t1133.scala
@@ -11,14 +11,14 @@ object Match
object Extractor1 {
def unapply(x: Any) = x match {
- case x: String => Some(x, x+x, x+x+x, x+x, x)
+ 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 x: String => Some(x, x + x, x + x+x)
case _ => None
}
}