blob: 06d1c4d7a892aedfe9673332445c98cfcf2cebfe [file] [log] [blame]
package test
class A
open var <caret>A.p: Int
get() = 1
set(value: Int) {}
fun test() {
val t = A().p
A().p = 1
}