7 lines
76 B
Kotlin
Vendored
7 lines
76 B
Kotlin
Vendored
package m1
|
|
|
|
inline fun foo(action: () -> Int): Int {
|
|
return action()
|
|
}
|
|
|