bb808b5620
Moved tests for completion and their test data into module idea-completion
12 lines
122 B
Kotlin
Vendored
12 lines
122 B
Kotlin
Vendored
class C {
|
|
var property = "abc"
|
|
get() = $property + 1
|
|
}
|
|
|
|
|
|
fun foo(c: C){
|
|
c.<caret>
|
|
}
|
|
|
|
// ABSENT: $property
|