Load Java static members from parents
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
fun box(): String {
|
||||
if (Parent.foo() != "Parent.foo") return "expected: Parent.foo"
|
||||
if (Parent.baz() != "Parent.baz") return "expected: Parent.baz"
|
||||
if (Child.foo() != "Parent.foo") return "expected: Child.foo() != Parent.foo"
|
||||
if (Child.baz() != "Child.baz") return "expected: Child.baz"
|
||||
if (Child.bar() != "Child.bar") return "expected: Child.bar"
|
||||
|
||||
return "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user