16 lines
271 B
Kotlin
Vendored
16 lines
271 B
Kotlin
Vendored
// FIR_COMPARISON
|
|
interface I<T> {
|
|
fun xxx(): T
|
|
}
|
|
|
|
fun foo(i1: I<Int>, i2: I<String>) {
|
|
with (i1) {
|
|
with (i2) {
|
|
xx<caret>
|
|
}
|
|
}
|
|
}
|
|
|
|
// EXIST: { lookupString: "xxx", itemText: "xxx", tailText: "()", typeText: "String" }
|
|
// NOTHING_ELSE
|