blob: ece0a3efe343c33839f7af01bb01b667ce3942be [file] [log] [blame]
class GClass<T> { // RESULT: class GClass<T>
fun foo(t: T): T {
return t
}
}
val g = GClass<Int>() // RESULT: val g: Generics.GClass<Int>
g.foo(1) // RESULT: 1