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