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
+2 -2
View File
@@ -1,5 +1,5 @@
fun test(a: /*T1@*/List</*T0@*/Int>) {
for (i: /*T2@*/Int in a/*T1@List<T0@Int>*/) {
fun test(a: /*T1@*/List</*T0@*/Int?>) {
for (i: /*T2@*/Int? in a/*T1@List<T0@Int>*/) {
}
}