a33d9df0cd
Mostly, it only affects FIR It partially allows to consider several variance of constraints like A<Int> & A<T> <: A<X_var> that are mostly brought by smart casts ^KT-49542 Fixed ^KT-50489 Relates
10 lines
127 B
Kotlin
Vendored
10 lines
127 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// SKIP_TXT
|
|
import java.util.*
|
|
|
|
val a = ArrayList<String>()
|
|
|
|
fun foo(l: List<String>) {
|
|
a.plusAssign(l)
|
|
}
|