1635018fe7
#KT-11807 Fixed
19 lines
509 B
Plaintext
Vendored
19 lines
509 B
Plaintext
Vendored
// "Implement abstract class" "true"
|
|
// SHOULD_BE_AVAILABLE_AFTER_EXECUTION
|
|
|
|
private abstract class Base {
|
|
abstract var x: Int
|
|
|
|
abstract fun toInt(arg: String): Int
|
|
}
|
|
|
|
private class BaseImpl : Base() {
|
|
override var x: Int
|
|
get() = throw UnsupportedOperationException()
|
|
set(value) {
|
|
}
|
|
|
|
override fun toInt(arg: String): Int {
|
|
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
} |