summaryrefslogtreecommitdiff
path: root/test/files/run/patmatnew.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/patmatnew.scala')
-rw-r--r--test/files/run/patmatnew.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/files/run/patmatnew.scala b/test/files/run/patmatnew.scala
index 6a5e725f29..63b40769ff 100644
--- a/test/files/run/patmatnew.scala
+++ b/test/files/run/patmatnew.scala
@@ -17,6 +17,12 @@ import scala.testing.SUnit._
object Test extends TestConsoleMain {
+ //just compilation
+ def zipFun[a,b](xs:List[a], ys:List[b]):List[Pair[a,b]] = (Pair(xs,ys): @unchecked) match {
+ // !!! case Pair(List(), _), Pair(_, List()) => List()
+ case Pair(x :: xs1, y :: ys1) => Pair(x, y) :: zipFun(xs1, ys1)
+ }
+
def suite = new TestSuite(
new TestSimpleIntSwitch,
new SimpleUnapply,