blob: c6789677af49f6b1a33ab832bba489963adfee76 [file] [log] [blame]
class X<T> {
def foo(List<T> list, T t) {}
}
class Y extends X<String> {
def foo(List<String> list, String t){}
}