3d8d92c7d3
- test data files renamed from *.jet to *.kt
8 lines
97 B
Kotlin
Vendored
8 lines
97 B
Kotlin
Vendored
abstract class A {
|
|
abstract fun foo(): Int
|
|
}
|
|
|
|
class B() : A() {
|
|
override fun foo() = 1
|
|
}
|