blob: 5acf1a614d2a40435bdefae7a414ab073a6846cf [file]
// KIND: STANDALONE_LLDB
inline fun foo(action: () -> Unit) {
return action()
}
fun bar() = 24
fun main(args: Array<String>) {
foo {
bar()
}
}