mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
test++
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
package com.a;
|
||||
public class A{
|
||||
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.b;
|
||||
import com.a.A;
|
||||
public class B{
|
||||
A aa = new A();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.a;
|
||||
import com.b.B;
|
||||
public class A{
|
||||
B b = new B();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.b;
|
||||
import com.a.A;
|
||||
public class B{
|
||||
A a = new A();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.subscope1.a;
|
||||
import com.subscope1.b.B;
|
||||
public class A{
|
||||
B b = new B();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.subscope1.b;
|
||||
import com.subscope1.a.A;
|
||||
public class B{
|
||||
A a = new A();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.subscope2.c;
|
||||
import com.subscope2.d.D;
|
||||
public class C{
|
||||
D d = new D();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.subscope2.d;
|
||||
import com.subscope2.c.C;
|
||||
public class D{
|
||||
C c = new C();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.a;
|
||||
import com.b.B;
|
||||
public class A{
|
||||
B b = new B();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.b;
|
||||
import com.a.A;
|
||||
public class B{
|
||||
A a = new A();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.a;
|
||||
import com.b.B;
|
||||
public class A{
|
||||
B b = new B();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.b;
|
||||
import com.a.A;
|
||||
public class B{
|
||||
A a = new A();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.c;
|
||||
import com.d.D;
|
||||
public class C{
|
||||
D d = new D();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.d;
|
||||
import com.c.C;
|
||||
public class D{
|
||||
C c = new C();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.a;
|
||||
import com.c.C;
|
||||
public class A{
|
||||
C c = new C();
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package com.b;
|
||||
import com.a.A;
|
||||
import com.d.D;
|
||||
public class B{
|
||||
A a = new A();
|
||||
D d = new D();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.c;
|
||||
import com.b.B;
|
||||
public class C{
|
||||
B b = new B();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.d;
|
||||
import com.b.B;
|
||||
public class D{
|
||||
B b = new B();
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package com.a;
|
||||
import com.b.B;
|
||||
import com.c.C;
|
||||
public class A{
|
||||
B b = new B();
|
||||
C c = new C();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.b;
|
||||
import com.a.A;
|
||||
public class B{
|
||||
A a = new A();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.c;
|
||||
import com.d.D;
|
||||
public class C{
|
||||
D d = new D();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.d;
|
||||
import com.a.A;
|
||||
public class D{
|
||||
A a = new A();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.a;
|
||||
import com.c.C;
|
||||
public class A{
|
||||
C c = new C();
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package com.b;
|
||||
import com.a.A;
|
||||
import com.d.D;
|
||||
public class B{
|
||||
A a = new A();
|
||||
D d = new D();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.c;
|
||||
import com.b.B;
|
||||
public class C{
|
||||
B b = new B();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.d;
|
||||
import com.b.B;
|
||||
public class D{
|
||||
B b = new B();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.a;
|
||||
import com.b.B1;
|
||||
public class A{
|
||||
B1 b = new B1();
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package com.b;
|
||||
public class B1{
|
||||
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.b;
|
||||
import com.c.C;
|
||||
public class B2{
|
||||
C cc= new C();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.c;
|
||||
import com.a.A;
|
||||
public class C{
|
||||
A aa = new A();
|
||||
}
|
||||
Reference in New Issue
Block a user