blob: 58ec97d9eac105cfcad98ddbf707a78ab7e9b3af [file] [log] [blame]
class Map<T, E> {}
class A<T> {
def <E> fo<caret>o(int x, Map<T, E>... l) {
}
}
class B extends A<String> {
def <E> foo(int x, Map<String, E>... l) {
}
}
new B<Integer>().foo(1, new Map<String, Integer>());