84a7e3c032
Refactor AbstractResolvedCallsTest to support multiple carets (multiple methods being tested for resolve) in testdata file.
8 lines
181 B
Kotlin
Vendored
8 lines
181 B
Kotlin
Vendored
fun valuesNotNull(map: MutableMap<Int, String>) {
|
|
map.<caret>forEach { k, v -> }
|
|
}
|
|
|
|
fun <T> valuesT(map: MutableMap<Int, T>, newValue: T) {
|
|
map.<caret>forEach { k, v -> }
|
|
}
|