30c2abba3c
Add a common OverridingStrategy class for cases where we don't care (yet) about precise diagnostics.
14 lines
209 B
Kotlin
Vendored
14 lines
209 B
Kotlin
Vendored
interface A {
|
|
fun <T> foo()
|
|
fun <T> bar()
|
|
}
|
|
|
|
interface B {
|
|
fun foo()
|
|
fun bar()
|
|
}
|
|
|
|
<!CONFLICTING_INHERITED_MEMBERS!>interface C1<!> : A, B {
|
|
<!CONFLICTING_OVERLOADS!>override fun bar()<!>
|
|
}
|