11 lines
114 B
Kotlin
Vendored
11 lines
114 B
Kotlin
Vendored
package m3
|
|
|
|
|
|
fun foofaa(): Unit { }
|
|
|
|
inline fun foo(action: () -> Int): Int {
|
|
foofaa()
|
|
return action()
|
|
}
|
|
|