Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
06ab8cc69e303e70578de24dd9a1cf4ebafff93a
/
.
/
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
}