c28515be59
#KT-32518 fixed
13 lines
287 B
Kotlin
Vendored
13 lines
287 B
Kotlin
Vendored
internal class A {
|
|
fun foo(collection: MutableCollection<String?>) {
|
|
bar(collection)
|
|
}
|
|
|
|
fun bar(collection: MutableCollection<String?>) {
|
|
if (collection.size < 5) {
|
|
foo(collection)
|
|
} else {
|
|
collection.add("a")
|
|
}
|
|
}
|
|
} |