Files
2024-02-29 18:10:04 +00:00

8 lines
121 B
Kotlin
Vendored

abstract class Bar {
abstract fun foo(): Any
}
class Foo : Bar() {
override fun foo(): String = error("stub")
}