File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,6 @@ object Test {
60
60
A17 ,
61
61
A18 )
62
62
assert(l1.mkString == l2.mkString)
63
- assert(! l1.contains(null ))
63
+ assert(! l1.contains(null )) // @odersky - 2.12 encoding seems wonky here as well
64
64
}
65
65
}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ object Test {
5
5
def main (args : Array [String ]): Unit = {
6
6
test(collection.mutable.ArrayBuffer [String ]())
7
7
test(collection.mutable.ListBuffer [String ]())
8
- class BBuf (z: ListBuffer [String ]) extends BufferProxy [String ] {
8
+ class BBuf (z: ListBuffer [String ]) extends BufferProxy [String ] { // @odersky - bug here in scala 2.12 trait encoding seems like...
9
9
def self = z
10
10
}
11
11
test(new BBuf (collection.mutable.ListBuffer [String ]()))
You can’t perform that action at this time.
0 commit comments