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