Files
kotlin-fork/idea/testData/quickfix/implement/abstract.kt.after
T
2016-12-14 13:40:44 +03:00

19 lines
555 B
Plaintext
Vendored

// "Implement abstract class" "true"
// WITH_RUNTIME
// 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() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
set(value) {}
override fun toInt(arg: String): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}