blob: ebdcbb23dbe2d7368f3825436f712bc8bdb81db3 [file]
interface G<T> {
fun foo(t : T) : T
}
class GC<T>() : G<T> {
override fun foo(t: T): T {
<selection><caret>TODO("Not yet implemented")</selection>
}
}