84a7e3c032
Refactor AbstractResolvedCallsTest to support multiple carets (multiple methods being tested for resolve) in testdata file.
8 lines
177 B
Kotlin
Vendored
8 lines
177 B
Kotlin
Vendored
fun valuesNotNull(map: MutableMap<Int, String>) {
|
|
map.<caret>putIfAbsent(1, "")
|
|
}
|
|
|
|
fun valuesNullable(map: MutableMap<Int, String?>) {
|
|
map.<caret>putIfAbsent(1, null)
|
|
}
|