mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
test++
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
package com.a;
|
||||
public class A{
|
||||
public void aa(){
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package com.a;
|
||||
public class C{
|
||||
A myA = new A ();
|
||||
public void cc(){
|
||||
myA.aa();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.b;
|
||||
import com.a.*;
|
||||
class B{
|
||||
A myA = new A();
|
||||
C myC = new C();
|
||||
void bb(){
|
||||
myA.aa();
|
||||
myC.cc();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user