blob: edb201a622e27dc43b028fd13637a0bf30d966ac [file] [log] [blame]
class Outer {
class Nested {
fun fn() = s
}
companion object {
private val s = "OK"
}
}
fun box(): String {
return Outer.Nested().fn()
}