Files
kotlin-fork/backend.native/tests/codegen/inline/inline6.kt
T
Konstantin Anisimov 99ef87ec78 TESTS: new tests added
2017-02-06 16:45:14 +07:00

18 lines
251 B
Kotlin

@Suppress("NOTHING_TO_INLINE")
inline fun foo(body: () -> Unit) {
println("hello1")
body()
println("hello4")
}
fun bar() {
foo {
println("hello2")
println("hello3")
}
}
fun main(args: Array<String>) {
bar()
}