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 Child extends Parent {
public static int b = 3;
public static int c = 4;
public static void bar() {}
public static void baz() {}
}