bb808b5620
Moved tests for completion and their test data into module idea-completion
13 lines
111 B
Plaintext
Vendored
13 lines
111 B
Plaintext
Vendored
enum class Foo {
|
|
X
|
|
Y
|
|
}
|
|
|
|
fun foo(f: Foo, i: Int){}
|
|
|
|
fun bar(){
|
|
foo(Foo.X, <caret>)
|
|
}
|
|
|
|
// ELEMENT: X
|