mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-01 21:20:54 +07:00
13 lines
279 B
Java
13 lines
279 B
Java
// "<html> Change signature of foo(<s>ArrayList<String></s> <b>HashSet<E></b>)</html>" "false"
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.HashSet;
|
|
|
|
class InspecitonIssue {
|
|
|
|
void foo(ArrayList<String> lst) {}
|
|
|
|
void bar() {
|
|
foo(new Hash<caret>Set<>());
|
|
}
|
|
} |