mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 11:18:16 +07:00
provide common quickfixes for ambiguous constructor calls (IDEA-115255)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
// "<html> Change signature of A(<s>int</s>)</html>" "true"
|
||||
class A {
|
||||
A() {}
|
||||
A(int i, String s) {}
|
||||
public void foo() {
|
||||
new A();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
// "<html> Change signature of A(<s>int</s>)</html>" "true"
|
||||
class A {
|
||||
A(int i) {}
|
||||
A(int i, String s) {}
|
||||
public void foo() {
|
||||
new A<caret>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user