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