blob: 150ccc1994f84c11c14f5bbe42332ccb2b8fd800 [file]
// IGNORE_BACKEND_FIR: JVM_IR
class Foo(private val s: String) {
inner class Inner {
private val x = {
this@Foo.s
}()
}
val f = Inner()
}
fun box(): String {
Foo("!")
return "OK"
}