Skip to content

Commit ef01848

Browse files
committed
Restored full test
Uncommented parts that were left accidentally commented out when debugging.
1 parent 28751a1 commit ef01848

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/run/unittest_collection.scala

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ object Test {
44

55
def main(args: Array[String]): Unit = {
66
test(collection.mutable.ArrayBuffer[String]())
7-
// test(collection.mutable.ListBuffer[String]())
8-
// class BBuf(z:ListBuffer[String]) extends BufferProxy[String] {
9-
// def self = z
10-
// }
11-
// test(new BBuf(collection.mutable.ListBuffer[String]()))
7+
test(collection.mutable.ListBuffer[String]())
8+
class BBuf(z:ListBuffer[String]) extends BufferProxy[String] {
9+
def self = z
10+
}
11+
test(new BBuf(collection.mutable.ListBuffer[String]()))
1212
}
1313

1414
def test(x: Buffer[String]): Unit = {

0 commit comments

Comments
 (0)