blob: c06b8ab2899fd6f965bf0e6937f4731e3ce9dc5d [file]
interface G<T> {
fun foo(t : T) : T
}
class GC() : G<Int> {
override fun foo(t: Int): Int {
<selection><caret>throw UnsupportedOperationException()</selection>
}
}