mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
error preferences according to javac (IDEA-180509)
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
class Test {
|
||||
static class A {
|
||||
private int a;
|
||||
|
||||
A(final int a) {}
|
||||
}
|
||||
|
||||
static class B extends A {
|
||||
B() {
|
||||
super(<error descr="'a' has private access in 'Test.A'">a</error>);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user