mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
10 lines
154 B
Kotlin
10 lines
154 B
Kotlin
class K : J()
|
|
|
|
fun box(): String {
|
|
val k = K()
|
|
val p = K::result
|
|
if (p.get(k) != null) return "Fail"
|
|
p.set(k, "OK")
|
|
return p.get(k)
|
|
}
|