mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
11 lines
160 B
Kotlin
Vendored
11 lines
160 B
Kotlin
Vendored
|
|
class X : J.A<Any?>()
|
|
|
|
fun box(): String {
|
|
val x = X()
|
|
if (x.size != 56) return "fail 1"
|
|
if (!x.contains(null)) return "fail 2"
|
|
|
|
return "OK"
|
|
}
|