mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:20:55 +07:00
12 lines
197 B
Java
12 lines
197 B
Java
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.<caret>f(new ArrayList<String>());
|
|
}
|
|
} |