3d8d92c7d3
- test data files renamed from *.jet to *.kt
10 lines
123 B
Kotlin
10 lines
123 B
Kotlin
open class Base() {
|
|
fun f() = 1
|
|
}
|
|
|
|
open class Left() : Base()
|
|
|
|
trait Right : Base
|
|
|
|
class Diamond() : Left(), Right
|