blob: 4b3559b6026b300f5637e52d967faffa334bc7d4 [file]
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>
}
}