blob: 229778721f305c5214ffebd5caae519dbf5b0604 [file] [log] [blame]
import java.util.*;
class Foo<T> {
void f(ArrayList<T> t) {}
<V> void f(List<V> t) {}
}
class User {
void foo (Foo<String> foo) {
foo.<ref>f(new ArrayList<String>());
}
}