mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
21 lines
631 B
Plaintext
Vendored
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.
|
|
}
|
|
} |