84a7e3c032
Refactor AbstractResolvedCallsTest to support multiple carets (multiple methods being tested for resolve) in testdata file.
10 lines
163 B
Kotlin
Vendored
10 lines
163 B
Kotlin
Vendored
import java.util.*
|
|
|
|
fun use(v: Optional<String>) {
|
|
v.<caret>ifPresent { value -> }
|
|
}
|
|
|
|
fun use2(v: Optional<String?>) {
|
|
v.<caret>ifPresent { value -> }
|
|
}
|