New J2K: use nullable type for unknown for public declarations & prepare for mutability inference
#KT-32518 fixed
This commit is contained in:
+1
-1
@@ -8,7 +8,7 @@ internal class IteratorTest {
|
||||
mutableMap2.entries.iterator().remove()
|
||||
}
|
||||
|
||||
fun testFunctionParameters(immutableCollection: Collection<String>, mutableList: MutableList<Int>) {
|
||||
fun testFunctionParameters(immutableCollection: Collection<String?>, mutableList: MutableList<Int?>) {
|
||||
val it = immutableCollection.iterator()
|
||||
while (it.hasNext()) {
|
||||
it.next()
|
||||
|
||||
Reference in New Issue
Block a user