84a7e3c032
Refactor AbstractResolvedCallsTest to support multiple carets (multiple methods being tested for resolve) in testdata file.
10 lines
148 B
Kotlin
Vendored
10 lines
148 B
Kotlin
Vendored
import java.util.*
|
|
|
|
fun use() {
|
|
val x: String? = "x"
|
|
Optional.<caret>of(x)
|
|
|
|
Optional.<caret>of(x!!)
|
|
Optional.<caret>ofNullable(x)
|
|
}
|