mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
11 lines
152 B
Kotlin
Vendored
11 lines
152 B
Kotlin
Vendored
|
|
class X : J.A()
|
|
|
|
fun box(): String {
|
|
val x = X()
|
|
if (x.size != 56) return "fail 1"
|
|
if (!x.contains("")) return "fail 2"
|
|
|
|
return "OK"
|
|
}
|