19 lines
183 B
Kotlin
Vendored
19 lines
183 B
Kotlin
Vendored
interface A {
|
|
fun foo()
|
|
}
|
|
|
|
interface B {
|
|
fun foo()
|
|
}
|
|
|
|
interface C : A, B {
|
|
|
|
}
|
|
|
|
fun test(c: C) {
|
|
c.<caret>foo()
|
|
}
|
|
|
|
// MULTIRESOLVE
|
|
// REF: (in A).foo()
|
|
// REF: (in B).foo() |