mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
check function type's parameters/return type accessibility (IDEA-181036)
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
package p;
|
||||
import test.*;
|
||||
|
||||
class Test {
|
||||
{
|
||||
I i = <error descr="'test.A' is not public in 'test'. Cannot be accessed from outside package">(a) -> {}</error>;
|
||||
J j = <error descr="'test.A' is not public in 'test'. Cannot be accessed from outside package">() -> null</error>;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user