11 lines
212 B
Kotlin
Vendored
11 lines
212 B
Kotlin
Vendored
// !WITH_NEW_INFERENCE
|
|
// ISSUE: KT-29767
|
|
|
|
fun test(a: MutableList<out Int?>?) {
|
|
if (a != null) {
|
|
val b = a[0] // no SMARTCAST diagnostic
|
|
if (b != null) {
|
|
b.inc()
|
|
}
|
|
}
|
|
} |