blob: a918014861660e009809136348cdd05f44d76245 [file] [log] [blame]
class Outer {
class Nested {
fun box() = "OK"
}
}
fun box() = Outer.Nested().box()