220141ab2b
(cherry picked from commit b620099)
10 lines
132 B
Kotlin
Vendored
10 lines
132 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
|
|
fun Int.exec(f: (Int) -> Unit) = f(this)
|
|
|
|
fun bar(x: Int) = x
|
|
|
|
fun foo() {
|
|
2.exec {<caret> bar(it) }
|
|
}
|