blob: bc85cea0b6f9d9350ad256fedd5b3c40c73b3021 [file] [log] [blame]
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.
}
}