Files
kotlin/idea/testData/codeInsight/overrideImplement/generateMulti.kt.after

21 lines
631 B
Plaintext
Vendored

package something
interface Some<T> {
fun someFoo()
fun someOtherFoo() : Int
fun someGenericFoo() : T
}
class SomeOther<S> : Some<S> {
override fun someFoo() {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
}
override fun someGenericFoo(): S {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
override fun someOtherFoo(): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}