bb808b5620
Moved tests for completion and their test data into module idea-completion
16 lines
195 B
Kotlin
Vendored
16 lines
195 B
Kotlin
Vendored
package sample
|
|
|
|
class Kool {
|
|
companion object {
|
|
val foo: Kool = Kool()
|
|
fun bar(): Kool = Kool()
|
|
}
|
|
}
|
|
|
|
fun foo(){
|
|
val k : Kool = K<caret>
|
|
}
|
|
|
|
// EXIST: foo
|
|
// EXIST: bar
|