blob: cc15d1330cc4d712dac785849bf7d935966e7f5c [file] [log] [blame]
interface T {
fun foo()
fun bar()
}
class C(t :T) : T by t {
override fun bar() {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
}
override fun equals(other: Any?): Boolean {
return super.equals(other)
}
override fun foo() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
override fun hashCode(): Int {
return super.hashCode()
}
override fun toString(): String {
return super.toString()
}
}
// KT-5103