diff --git a/rando/a.class b/rando/a.class new file mode 100644 index 0000000..a8a94f8 Binary files /dev/null and b/rando/a.class differ diff --git a/rando/a.java b/rando/a.java new file mode 100644 index 0000000..3b9f6f3 --- /dev/null +++ b/rando/a.java @@ -0,0 +1,5 @@ +public class a +{ + static b bInstance; + static int j = b.k++; +} \ No newline at end of file diff --git a/rando/b.class b/rando/b.class new file mode 100644 index 0000000..541907e Binary files /dev/null and b/rando/b.class differ diff --git a/rando/b.java b/rando/b.java new file mode 100644 index 0000000..576f90a --- /dev/null +++ b/rando/b.java @@ -0,0 +1,5 @@ +public class b +{ + static a aInstance; + static int k = a.j; +} \ No newline at end of file diff --git a/rando/c.class b/rando/c.class new file mode 100644 index 0000000..fcb5d09 Binary files /dev/null and b/rando/c.class differ diff --git a/rando/c.java b/rando/c.java new file mode 100644 index 0000000..3517163 --- /dev/null +++ b/rando/c.java @@ -0,0 +1,8 @@ +public class c +{ + public static void main(String[] args) + { + a l; + a.bInstance = new b(); + } +} \ No newline at end of file