mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-13 09:19:13 +07:00
completion: check parent overloads for constructor calls as well (IDEA-187354)
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
import java.util.function.Function;
|
||||
class TestMain {
|
||||
public static void main(String[] args) {
|
||||
new TestMain("abc", url -> url.<caret>);
|
||||
}
|
||||
|
||||
TestMain(String str, Function<String, String> a, Function<String, String> b) {}
|
||||
|
||||
TestMain(int i) {}
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
import java.util.function.Function;
|
||||
class TestMain {
|
||||
public static void main(String[] args) {
|
||||
new TestMain("abc", url -> url.isEmpty()<caret>);
|
||||
}
|
||||
|
||||
TestMain(String str, Function<String, String> a, Function<String, String> b) {}
|
||||
|
||||
TestMain(int i) {}
|
||||
}
|
||||
Reference in New Issue
Block a user