Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
closures
/
kt4106.kt
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"
}