From 379a56669bfde2ee08e8941f2a49ccb328fa3d64 Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Mon, 31 Mar 2003 08:44:58 +0000 Subject: *** empty log message *** --- test/files/pos/IntSet.scala | 2 +- test/pos/IntSet.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'test') 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; diff --git a/test/pos/IntSet.scala b/test/pos/IntSet.scala index 639a099d9a..25d7070c94 100644 --- a/test/pos/IntSet.scala +++ b/test/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; -- cgit v1.2.3