mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
java highlighting tests moved to community
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
package p1;
|
||||
|
||||
public class C1 {
|
||||
protected static class InnerClassInBase
|
||||
{
|
||||
}
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
package p2;
|
||||
|
||||
import p1.C1;
|
||||
|
||||
public class C2 extends C1 {
|
||||
public void amethod() {
|
||||
InnerClassInBase inner;
|
||||
inner = new <error descr="'p1.C1.InnerClassInBase' has protected access in 'p1.C1'">InnerClassInBase</error>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user