mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
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()
|
|
}
|
|
|