Fuck this is complicated (2/2)

Seeing how java does things
typecheck_reliancetree
Tristan B. Kildaire 3 years ago
parent dc01256e60
commit fa953bc809

Binary file not shown.

@ -0,0 +1,5 @@
public class a
{
static b bInstance;
static int j = b.k++;
}

Binary file not shown.

@ -0,0 +1,5 @@
public class b
{
static a aInstance;
static int k = a.j;
}

Binary file not shown.

@ -0,0 +1,8 @@
public class c
{
public static void main(String[] args)
{
a l;
a.bInstance = new b();
}
}
Loading…
Cancel
Save