4d9b19da82
#KT-18539 Fixed
10 lines
175 B
Plaintext
Vendored
10 lines
175 B
Plaintext
Vendored
interface G<T> {
|
|
fun foo(t : T) : T
|
|
}
|
|
|
|
class GC() : G<Int> {
|
|
override fun foo(t: Int): Int {
|
|
<selection><caret>TODO("Not yet implemented")</selection>
|
|
}
|
|
}
|