blob: 414954aab60a71e8da0c188b5f2816c20de2d6b9 [file] [log] [blame]
class Outer {
class Nested {
fun fn(): String {
s = "OK"
return s
}
}
companion object {
public var s = "fail"
private set
}
}
fun box(): String {
return Outer.Nested().fn()
}