84a7e3c032
Refactor AbstractResolvedCallsTest to support multiple carets (multiple methods being tested for resolve) in testdata file.
11 lines
312 B
Kotlin
Vendored
11 lines
312 B
Kotlin
Vendored
fun <E : CharSequence> notNullValues(collection: Iterable<E>) {
|
|
collection.<caret>spliterator()
|
|
}
|
|
|
|
fun <E : CharSequence> nullableValues(collection: Iterable<E?>) {
|
|
collection.<caret>spliterator()
|
|
}
|
|
|
|
fun <E : CharSequence?> nullableValues2(collection: Iterable<E>) {
|
|
collection.<caret>spliterator()
|
|
} |