Adjust testData: JDK collections behave like non-platform in backend
Some of that changes looks like regression and should be fixed soon
This commit is contained in:
+2
-3
@@ -1,8 +1,7 @@
|
||||
import java.util.Arrays
|
||||
import java.util.ArrayList
|
||||
import java.util.*
|
||||
|
||||
fun box(): String {
|
||||
val a = ArrayList<String>()
|
||||
val a = ArrayList<String>() as AbstractList<String>
|
||||
a.add(null)
|
||||
try {
|
||||
val b: String = a[0]
|
||||
|
||||
Reference in New Issue
Block a user