mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-13 11:20:12 +07:00
14 lines
195 B
Java
14 lines
195 B
Java
import java.util.*;
|
|
|
|
public class AAA {
|
|
<T> void f(Collection<T> t) {
|
|
}
|
|
|
|
void f(java.util.List<String> s) {
|
|
}
|
|
|
|
void y(List<String> strings) {
|
|
<ref>f(strings);
|
|
}
|
|
}
|