blob: 10688476918f26c86c0692e0de5ae3466209e0cf [file] [log] [blame]
fun box() : String {
val o = object {
inner class C {
fun foo() = "OK"
}
}
return o.C().foo()
}