Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
codegen
/
box
/
localClasses
/
recaptureVarCapturedInLocalClass2.kt
blob: b3553b1684761541788f23e35fbb592d10988da1 [
file
] [
log
] [
blame
]
fun box
():
String
{
var
x
=
""
class
CapturesX
{
override
fun toString
()
=
x
}
fun outerFun1
():
CapturesX
{
fun localFun
()
=
CapturesX
()
return
localFun
()
}
x
=
"OK"
return
outerFun1
().
toString
()
}