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.scala26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/pending/pos/unapplySeq.scala b/tests/pending/pos/unapplySeq.scala
new file mode 100644
index 000000000..6d13cc8b5
--- /dev/null
+++ b/tests/pending/pos/unapplySeq.scala
@@ -0,0 +1,26 @@
+object FooSeq {
+ def unapplySeq(x:Any): Option[Product2[Int,Seq[String]]] = {
+ if(x.isInstanceOf[Bar]) {
+ val y = x.asInstanceOf[Bar]
+ Some(y.size, y.name)
+ } else None
+ }
+
+ def main(args:Array[String]) = {
+ val b = new Bar
+ b match {
+ 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)
+ }
+ }
+}
+
+class Bar {
+ var size: Int = 50
+ var name: Seq[String] = List("medium","M")
+}
+