Files
kotlin-fork/idea/testData/resolve/partialBodyResolve/PropertyAccessorBody.kt
T
2014-11-24 20:11:27 +03:00

12 lines
180 B
Kotlin
Vendored

var prop: Int
get() {
print("get")
val v = 1
<caret>v
return 1
}
set {
print("set")
val v = 2
print("yes")
}