// " Change signature of foo(boolean HashSet<E>)" "false" import java.util.*; class IntentionIssue { void foo(boolean b) {} void foo(ArrayList lst) {} void bar() { foo(new HashSet<>()); } }