bb808b5620
Moved tests for completion and their test data into module idea-completion
14 lines
115 B
Plaintext
Vendored
14 lines
115 B
Plaintext
Vendored
package foo
|
|
|
|
import foo.Foo.*
|
|
|
|
enum class Foo {
|
|
AAA
|
|
}
|
|
|
|
fun take(a: Any){}
|
|
|
|
fun test() {
|
|
take(AAA<caret>)
|
|
}
|