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