4d9b19da82
#KT-18539 Fixed
21 lines
415 B
Plaintext
Vendored
21 lines
415 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 yet implemented")</selection>
|
|
}
|
|
|
|
override fun someGenericFoo(): S {
|
|
TODO("Not yet implemented")
|
|
}
|
|
|
|
override fun someOtherFoo(): Int {
|
|
TODO("Not yet implemented")
|
|
}
|
|
} |