Files
kotlin-fork/compiler/testData/diagnostics/tests/override/ToAbstractMembersFromSuper-kt1996.fir.kt
T

11 lines
146 B
Kotlin
Vendored

// http://youtrack.jetbrains.com/issue/KT-1996
interface Foo {
fun foo(): Unit
}
interface Bar {
fun foo(): Unit
}
class Baz : Foo, Bar