mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
Java: Use single-module test for suggested visibility of classes exposed with 'module-info' (IDEA-169200)
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
package foo.bar;
|
||||
|
||||
<warning descr="Access can be package-private">public</warning> class Public {
|
||||
<warning descr="Access can be package-private">public</warning> static class Nested {}
|
||||
<warning descr="Access can be package-private">protected</warning> class Inner {}
|
||||
|
||||
private static class Impl extends Public {}
|
||||
private static class Impl2 extends Public.Nested {}
|
||||
private class Impl3 extends Public.Inner {}
|
||||
}
|
||||
Reference in New Issue
Block a user