mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
22 lines
314 B
Kotlin
Vendored
22 lines
314 B
Kotlin
Vendored
inline fun inlineFun(s: () -> Unit) {
|
|
s()
|
|
}
|
|
|
|
fun main(args: Array<String>) {
|
|
inlineFun ({
|
|
test.lineNumber()
|
|
})
|
|
|
|
inlineFun {
|
|
test.lineNumber()
|
|
}
|
|
|
|
inlineFun {
|
|
test.lineNumber()
|
|
|
|
inlineFun {
|
|
test.lineNumber()
|
|
}
|
|
}
|
|
}
|