3d8d92c7d3
- test data files renamed from *.jet to *.kt
10 lines
99 B
Kotlin
10 lines
99 B
Kotlin
open class Ccc() {
|
|
fun foo() = 1
|
|
}
|
|
|
|
trait Ttt {
|
|
fun foo(): Int
|
|
}
|
|
|
|
class Zzz() : Ccc(), Ttt
|