Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
compiler
/
testData
/
codegen
/
box
/
closures
/
localClassFunClosure.kt
blob: ba0ae9734a00eb0e01d329eed0453162693a36cc [
file
]
fun box
():
String
{
val o
=
"O"
fun ok
()
=
o
+
"K"
class
OK
{
val ok
=
ok
()
}
return
OK
().
ok
}