Files
kotlin-fork/compiler/testData/diagnostics/tests/override/clashesOnInheritance/kt9550.fir.kt
T

14 lines
145 B
Kotlin
Vendored

interface A {
fun <T> foo()
fun <T> bar()
}
interface B {
fun foo()
fun bar()
}
interface C1 : A, B {
override fun bar()
}