mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
12 lines
164 B
Kotlin
12 lines
164 B
Kotlin
|
|
inline fun foo(x : Int, block : (Int) -> Int) : Int {
|
|
return block(x)
|
|
}
|
|
|
|
fun bar() {
|
|
foo(1) { x -> x + 1 }
|
|
}
|
|
|
|
// 1 java/lang/Integer.valueOf
|
|
// 1 intValue
|