mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
8 lines
194 B
Kotlin
Vendored
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"
|
|
}
|