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