Files
kotlin/compiler/testData/codegen/boxWithJava/statics/functions/test.kt
2015-10-08 19:33:29 +03:00

10 lines
387 B
Kotlin
Vendored

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"
}