blob: adce0368131ddf81ed9e16550b0f3416b9a6d0f9 [file] [log] [blame]
class Test {
val a : String = "1"
private val b : String get() = a
fun outer() : Int {
return b.length
}
}
fun box() = if (Test().outer() == 1) "OK" else "fail"