bb808b5620
Moved tests for completion and their test data into module idea-completion
17 lines
193 B
Kotlin
Vendored
17 lines
193 B
Kotlin
Vendored
class C {
|
|
companion object {
|
|
val INSTANCE = C()
|
|
fun create() = C()
|
|
}
|
|
}
|
|
|
|
fun foo(p: C) {
|
|
foo(<caret>)
|
|
}
|
|
|
|
|
|
// ORDER: p
|
|
// ORDER: C
|
|
// ORDER: INSTANCE
|
|
// ORDER: create
|