mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
Load Java static members from parents
This commit is contained in:
8
compiler/testData/codegen/boxWithJava/statics/functions/Child.java
vendored
Normal file
8
compiler/testData/codegen/boxWithJava/statics/functions/Child.java
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
class Child extends Parent {
|
||||
public static String bar() {
|
||||
return "Child.bar";
|
||||
}
|
||||
public static String baz() {
|
||||
return "Child.baz";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user