6 lines
69 B
Kotlin
Vendored
6 lines
69 B
Kotlin
Vendored
abstract class A {
|
|
abstract fun foo(): Int
|
|
}
|
|
|
|
class B() : A() {
|
|
} |