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