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