11 lines
146 B
Kotlin
Vendored
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 |