Fix the accessing to static field from Parent through Child

This commit is contained in:
Zalim Bashorov
2015-10-06 23:15:36 +03:00
parent ae2831338b
commit c8f54b3ccb
7 changed files with 67 additions and 5 deletions

View File

@@ -0,0 +1,6 @@
class Parent {
public static int a = 1;
public static int b = 2;
public static void foo() {}
public static void baz() {}
}