mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
java completion: don't suggest inacessible method/constructor references (IDEA-182311)
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
import java.util.function.Supplier;
|
||||
|
||||
class RefMain1 {
|
||||
{
|
||||
Supplier<Foo> s = <caret>
|
||||
}
|
||||
}
|
||||
|
||||
class Foo {
|
||||
private Foo() {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user