c28515be59
#KT-32518 fixed
9 lines
172 B
Kotlin
Vendored
9 lines
172 B
Kotlin
Vendored
internal class A {
|
|
fun foo(set: MutableSet<String?>) {
|
|
bar(set)
|
|
}
|
|
|
|
fun bar(collection: MutableCollection<String?>) {
|
|
collection.add("a")
|
|
}
|
|
} |