bb808b5620
Moved tests for completion and their test data into module idea-completion
10 lines
131 B
Kotlin
Vendored
10 lines
131 B
Kotlin
Vendored
fun<T> xxx1(): T {}
|
|
fun<T : Collection<String>> xxx2(): T {}
|
|
|
|
fun foo() {
|
|
for (i in <caret>)
|
|
}
|
|
|
|
// ABSENT: xxx1
|
|
// EXIST: xxx2
|