11 lines
170 B
Plaintext
Vendored
11 lines
170 B
Plaintext
Vendored
// "Implement members" "true"
|
|
abstract class A {
|
|
abstract fun foo()
|
|
}
|
|
|
|
class B : A() {
|
|
override fun foo() {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
}
|