aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/unapplySeq.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/unapplySeq.scala')
-rw-r--r--tests/pending/pos/unapplySeq.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/pending/pos/unapplySeq.scala b/tests/pending/pos/unapplySeq.scala
index 6d13cc8b5..e642fd8d6 100644
--- a/tests/pending/pos/unapplySeq.scala
+++ b/tests/pending/pos/unapplySeq.scala
@@ -9,12 +9,12 @@ object FooSeq {
def main(args:Array[String]) = {
val b = new Bar
b match {
- case FooSeq(s:Int,_,n:String) => Console.println("size "+s+" name "+n)
+ case FooSeq(s:Int,_,n:String) => Console.println("size " + s +" name "+ n)
}
b.size = 54
b.name = List("large","L")
b match {
- case FooSeq(s:Int,_,n:String) => Console.println("size "+s+" name "+n)
+ case FooSeq(s:Int,_,n:String) => Console.println("size " + s +" name "+ n)
}
}
}