Files
kotlin-fork/idea/idea-completion/testData/basic/common/backingFields/BackingFields6.kt
T
Valentin Kipyatkov 60ea98f870 Moved/renamed test data
2015-07-08 16:28:34 +03:00

14 lines
182 B
Kotlin
Vendored

class C {
var aProperty = "abc"
get() {}
var bProperty = "abc"
get() {}
fun foo(){
$a<caret>
}
}
// EXIST: $aProperty
// ABSENT: $bProperty