mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
10 lines
250 B
Java
10 lines
250 B
Java
// "<html> Change signature of foo(<s>boolean</s> <b>HashSet<E></b>)</html>" "false"
|
|
import java.util.*;
|
|
class IntentionIssue {
|
|
void foo(boolean b) {}
|
|
void foo(ArrayList<String> lst) {}
|
|
|
|
void bar() {
|
|
foo(new Hash<caret>Set<>());
|
|
}
|
|
} |