mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
Fix the accessing to static field from Parent through Child
This commit is contained in:
6
compiler/testData/codegen/bytecodeTextMultifile/javaStatics/Parent.java
vendored
Normal file
6
compiler/testData/codegen/bytecodeTextMultifile/javaStatics/Parent.java
vendored
Normal 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() {}
|
||||
}
|
||||
Reference in New Issue
Block a user