Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
21de67cac1bef9259daa407b68a12e178923aef3
/
.
/
compiler
/
testData
/
codegen
/
box
/
closures
/
kt4106.kt
blob: f190819f8d53af52efbfa6a2510c5ee8165a6fb8 [
file
]
class
Foo
(
private
val s
:
String
)
{
inner
class
Inner
{
private
val x
=
{
this
@Foo
.
s
}()
}
val f
=
Inner
()
}
fun box
():
String
{
Foo
(
"!"
)
return
"OK"
}