mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +07:00
diamonds: resolve conflicts based on type params from constructor and containing class (IDEA-123518)
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
import java.util.*;
|
||||
|
||||
class XTest {
|
||||
public void setStuff(String stuff) {
|
||||
setStuff(new ArrayList<>(Arrays.asList(stuff)));
|
||||
}
|
||||
|
||||
private void setStuff(List<String> stuff) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user