blob: 7691e8c76e1c2eda14e26068fe8d88e75c5cd8be [file] [log] [blame]
//ALLOW_AST_ACCESS
package test
inline fun a() {}
inline fun b() {}
inline fun c(crossinline f: () -> Unit) {
object { init { f() }}
{ f() }
}
inline fun d() {
c {}
}