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