blob: ef2f8e80c5dc90679011b6cb9e582545a516864f [file] [log] [blame]
interface G<T> {
fun foo(t : T) : T
}
class GC() : G<Int> {
<caret>
}