9 lines
118 B
Kotlin
Vendored
9 lines
118 B
Kotlin
Vendored
// IS_APPLICABLE: true
|
|
// WITH_RUNTIME
|
|
|
|
fun foo() {
|
|
listOf(1).forEach { run(<caret>it::bar) }
|
|
}
|
|
|
|
fun Int.bar() {
|
|
} |