summaryrefslogtreecommitdiff
path: root/test/files/run/t5804.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t5804.scala')
-rw-r--r--test/files/run/t5804.scala14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/files/run/t5804.scala b/test/files/run/t5804.scala
index b96a736035..b6a8940c1f 100644
--- a/test/files/run/t5804.scala
+++ b/test/files/run/t5804.scala
@@ -4,29 +4,29 @@ import collection.mutable._
object Test {
-
+
def main(args: Array[String]) {
class CustomHashMap extends HashMap[Int, Int] {
override def initialSize = 65
-
+
println(table.length)
}
-
+
new CustomHashMap
new HashMap {
println(table.length)
}
-
+
class CustomHashSet extends HashSet[Int] {
override def initialSize = 96
-
+
println(table.length)
}
-
+
new CustomHashSet
new HashSet {
println(table.length)
}
}
-
+
}