summaryrefslogtreecommitdiff
path: root/test/pending
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending')
-rw-r--r--test/pending/pos/unapplyComplex.scala2
-rw-r--r--test/pending/run/unapply.scala2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/pending/pos/unapplyComplex.scala b/test/pending/pos/unapplyComplex.scala
index 0d5700a3be..54080eb86f 100644
--- a/test/pending/pos/unapplyComplex.scala
+++ b/test/pending/pos/unapplyComplex.scala
@@ -29,7 +29,7 @@ object Test {
Console.println("mod"+mod+"arg"+arg)
}
val Komplex = ComplexRect
- new ComplexPolar(Math.sqrt(2),Math.PI / 4.0) match {
+ new ComplexPolar(Math.sqrt(2),Math.Pi / 4.0) match {
case Komplex(re,im) => // z @ ???
Console.println("re"+re+" im"+im)
}
diff --git a/test/pending/run/unapply.scala b/test/pending/run/unapply.scala
index e00a1e63a0..d84711519f 100644
--- a/test/pending/run/unapply.scala
+++ b/test/pending/run/unapply.scala
@@ -79,7 +79,7 @@ object Mas extends Assert {
object Lis extends Assert {
def run {
- assertEquals(List(1,2,3) match { case List(x,y,_*) => {x,y}}, {1,2})
+ assertEquals((List(1,2,3): Any) match { case List(x,y,_*) => {x,y}}, {1,2})
}
}