blob: 232c243fb3586455d91303b683d46b4b2092f123 [file] [log] [blame]
import java.util.*;
public class AAA {
<T> void f(java.util.List<T> t) {
}
void f(Collection<String> s) {
}
void y(List<String> strings) {
<ref>f(strings);
}
}