blob: d63b61770ca5a56263f460fa607174dd686ca82e [file]
// IR_DIFFERENCE
// INLINE_SCOPES_DIFFERENCE
// LOCAL_VARIABLE_TABLE
class Foo {
fun foo() {
block {
this@Foo
}
}
inner class Bar {
fun bar() {
block {
this@Foo
this@Bar
block {
this@Foo
this@Bar
}
}
}
}
}
inline fun block(block: () -> Unit) = block()