bb808b5620
Moved tests for completion and their test data into module idea-completion
12 lines
147 B
Kotlin
Vendored
12 lines
147 B
Kotlin
Vendored
class C(val x: X) {
|
|
val foo: String
|
|
get() = x.<caret>
|
|
}
|
|
|
|
class X {
|
|
val s = ""
|
|
fun getFoo() = ""
|
|
}
|
|
|
|
// ORDER: getFoo, s, toString
|