blob: 0a4fbfbbbf0d60ec54dfb91b5b5785ed049e7c50 [file] [log] [blame]
package test
fun A.a(): String {
class B {
val b : String
get() = this@a.s
}
return B().b
}
class A {
val s : String = "OK"
}
fun box() : String {
return A().a()
}