New J2K: use nullable type for unknown for public declarations & prepare for mutability inference

#KT-32518 fixed
This commit is contained in:
Ilya Kirillov
2019-08-29 18:18:39 +03:00
parent 0040490daf
commit c28515be59
128 changed files with 784 additions and 609 deletions
+1 -1
View File
@@ -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()