9 lines
74 B
Kotlin
Vendored
9 lines
74 B
Kotlin
Vendored
val c = Unit
|
|
val d = c
|
|
|
|
fun box(): String {
|
|
c
|
|
d
|
|
return "OK"
|
|
}
|