Skip to content
Snippets Groups Projects
Commit 7e6217fc authored by Thomas's avatar Thomas
Browse files

simplified testcase

parent a15045e6
No related branches found
No related tags found
No related merge requests found
...@@ -3,5 +3,5 @@ package A; ...@@ -3,5 +3,5 @@ package A;
import B.B; import B.B;
public class A{ public class A{
B b=new B(); B b;
} }
...@@ -4,6 +4,6 @@ import C.C; ...@@ -4,6 +4,6 @@ import C.C;
import D.D; import D.D;
public class B{ public class B{
C c=new C(); C c;
D d=new D(); D d;
} }
...@@ -3,5 +3,5 @@ package C; ...@@ -3,5 +3,5 @@ package C;
import B.B; import B.B;
public class C{ public class C{
B b=new B(); B b;
} }
...@@ -4,6 +4,6 @@ import D.E.E; ...@@ -4,6 +4,6 @@ import D.E.E;
import G.G; import G.G;
public class D{ public class D{
E e=new E(); E e;
G g=new G(); G g;
} }
...@@ -3,5 +3,5 @@ package D.E; ...@@ -3,5 +3,5 @@ package D.E;
import D.F.F; import D.F.F;
public class E{ public class E{
F f=new F(); F f;
} }
...@@ -3,5 +3,5 @@ package D.F; ...@@ -3,5 +3,5 @@ package D.F;
import D.D; import D.D;
public class F{ public class F{
D d=new D(); D d;
} }
package G; package G;
public class G{ public class G{
G g=new G(); G g;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment