3d8d92c7d3
- test data files renamed from *.jet to *.kt
12 lines
177 B
Kotlin
12 lines
177 B
Kotlin
// 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
|