87b628a3f7
(cherry picked from commit 462bdb2) #KT-6477 Fixed
12 lines
138 B
Kotlin
Vendored
12 lines
138 B
Kotlin
Vendored
fun box() {
|
|
lookAtMe {
|
|
42
|
|
}
|
|
}
|
|
|
|
inline fun lookAtMe(f: () -> Int) {
|
|
val a = 21
|
|
a + f()
|
|
}
|
|
|
|
// 2 13 14 3 15 +5 8 9 10 |