mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
IDEA-124985
This commit is contained in:
+4
@@ -0,0 +1,4 @@
|
||||
package p1;
|
||||
public class A {
|
||||
protected String myFoo = "A";
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
package p2;
|
||||
|
||||
import p1.A;
|
||||
|
||||
class B extends A {
|
||||
{
|
||||
System.out.println(super.myFoo);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user