6048647812
Related to KT-22068
10 lines
133 B
Kotlin
Vendored
10 lines
133 B
Kotlin
Vendored
// PROBLEM: none
|
|
// WITH_RUNTIME
|
|
|
|
class My {
|
|
operator fun invoke() {}
|
|
}
|
|
|
|
fun bar(my: List<My>) {
|
|
my.for<caret>Each { it() }
|
|
} |