Files
kotlin-fork/idea/testData/refactoring/changeSignature/AddTopLevelPropertyReceiverAfter.kt
T
2015-11-02 15:15:39 +03:00

12 lines
132 B
Kotlin
Vendored

package test
class A
open var <caret>A.p: Int
get() = 1
set(value: Int) {}
fun test() {
val t = A().p
A().p = 1
}