c34b417d0c
#KT-34744
9 lines
338 B
Kotlin
Vendored
9 lines
338 B
Kotlin
Vendored
internal class A<T> {
|
|
fun foo(nonMutableCollection: Collection<String?>?,
|
|
mutableCollection: MutableCollection<String?>,
|
|
mutableSet: MutableSet<T?>,
|
|
mutableMap: MutableMap<String?, T>) {
|
|
mutableCollection.addAll(nonMutableCollection!!)
|
|
mutableSet.add(mutableMap.remove("a"))
|
|
}
|
|
} |