summaryrefslogtreecommitdiff
path: root/test/files/run/t2029.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t2029.scala')
-rw-r--r--test/files/run/t2029.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/t2029.scala b/test/files/run/t2029.scala
index 32b04f0b47..1cbe97a350 100644
--- a/test/files/run/t2029.scala
+++ b/test/files/run/t2029.scala
@@ -3,10 +3,10 @@ object Test{
import scala.collection.immutable.TreeSet;
val mainSet = TreeSet(1 to 5 :_*)
-
+
var compareCalled = false;
val smallerSet = TreeSet(2 to 4 :_*)(Ordering[Int].reverse)
-
+
println(mainSet.mkString(","))
println(smallerSet.mkString(","))
println(smallerSet.subsetOf(mainSet));