summaryrefslogtreecommitdiff
path: root/test/files/pos
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos')
-rw-r--r--test/files/pos/IntSet.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/IntSet.scala b/test/files/pos/IntSet.scala
index 639a099d9a..25d7070c94 100644
--- a/test/files/pos/IntSet.scala
+++ b/test/files/pos/IntSet.scala
@@ -5,7 +5,7 @@ trait IntSet {
def union(that: IntSet): IntSet;
}
object Empty extends IntSet {
- def contains(x: Int): Boolean = Boolean.False;
+ def contains(x: Int): Boolean = false;
def incl(x: Int): IntSet = new NonEmpty(x, Empty, Empty);
def foreach(f: Int => Unit): Unit = ();
def union(that: IntSet): IntSet = that;