summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2003-08-20 14:55:45 +0000
committermichelou <michelou@epfl.ch>2003-08-20 14:55:45 +0000
commitb0a6581fe605ce800a4f3108e9732c40a505fbfe (patch)
tree02fd5fc8697b59c17081e4a2ce11b2c0689903de /test
parent8497662b955dc4c4d32130c251c7c25046afea28 (diff)
downloadscala-b0a6581fe605ce800a4f3108e9732c40a505fbfe.tar.gz
scala-b0a6581fe605ce800a4f3108e9732c40a505fbfe.tar.bz2
scala-b0a6581fe605ce800a4f3108e9732c40a505fbfe.zip
commented out test case with Stack (no more <: ...
commented out test case with Stack (no more <: StructuralEquality)
Diffstat (limited to 'test')
-rw-r--r--test/files/run/overloads.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/overloads.scala b/test/files/run/overloads.scala
index f060f55e16..9ec97e78bf 100644
--- a/test/files/run/overloads.scala
+++ b/test/files/run/overloads.scala
@@ -76,9 +76,9 @@ object overloads {
val x = 3;
check("M1.f(" + x +")", M1.f(x), 11);
check("M2.f(" + x +")", M2.f(x), 22);
- val y = new scala.collection.mutable.Stack[Int];
- check("M1.f(" + y +")", M1.f(y), 12);
- check("M2.f(" + y +")", M2.f(y), 21);
+// val y = new scala.collection.mutable.Stack[Int];
+// check("M1.f(" + y +")", M1.f(y), 12);
+// check("M2.f(" + y +")", M2.f(y), 21);
}
}