448260fc3e
===
trait Foo {
fun foo(): Unit
}
trait Bar {
fun foo(): Unit
}
class Baz : Foo, Bar // no error here
===
#KT-1996 fixed
12 lines
177 B
Plaintext
12 lines
177 B
Plaintext
// http://youtrack.jetbrains.com/issue/KT-1996
|
|
|
|
trait Foo {
|
|
fun foo(): Unit
|
|
}
|
|
|
|
trait Bar {
|
|
fun foo(): Unit
|
|
}
|
|
|
|
class <!ABSTRACT_MEMBER_NOT_IMPLEMENTED!>Baz<!> : Foo, Bar
|