We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb9952a commit 01ff24fCopy full SHA for 01ff24f
tests/run/LazyValsLongs.scala
@@ -60,6 +60,6 @@ object Test {
60
A17,
61
A18)
62
assert(l1.mkString == l2.mkString)
63
- assert(!l1.contains(null))
+ assert(!l1.contains(null)) // @odersky - 2.12 encoding seems wonky here as well
64
}
65
tests/run/unittest_collection.scala
@@ -5,7 +5,7 @@ object Test {
5
def main(args: Array[String]): Unit = {
6
test(collection.mutable.ArrayBuffer[String]())
7
test(collection.mutable.ListBuffer[String]())
8
- class BBuf(z:ListBuffer[String]) extends BufferProxy[String] {
+ class BBuf(z:ListBuffer[String]) extends BufferProxy[String] { // @odersky - bug here in scala 2.12 trait encoding seems like...
9
def self = z
10
11
test(new BBuf(collection.mutable.ListBuffer[String]()))
0 commit comments