Load Java static members from parents

This commit is contained in:
Zalim Bashorov
2015-10-05 19:16:03 +03:00
parent d90585624f
commit ae2831338b
40 changed files with 843 additions and 2 deletions

View File

@@ -0,0 +1,4 @@
class Parent {
public static int a = 1;
public static int b = 2;
}