bb808b5620
Moved tests for completion and their test data into module idea-completion
17 lines
217 B
Plaintext
Vendored
17 lines
217 B
Plaintext
Vendored
class C {
|
|
companion object {
|
|
fun f1(): C = C()
|
|
fun f2(): C = C()
|
|
fun f3(): C? = C()
|
|
}
|
|
}
|
|
|
|
fun foo(c: C){}
|
|
fun foo(c: C?, i: Int){}
|
|
|
|
fun foo() {
|
|
foo(C.f3(), <caret>
|
|
}
|
|
|
|
// ELEMENT: f3
|