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