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

8 lines
194 B
Kotlin
Vendored

fun box(): String {
if (Child.a != "2") return "Fail #1"
if (Child.foo() != "Child.foo()") return "Fail #2"
if (Child.foo(1) != "Child.foo(int)") return "Fail #3"
return "OK"
}