mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
12 lines
170 B
Kotlin
12 lines
170 B
Kotlin
fun box(): String {
|
|
Unit
|
|
|
|
val a = Unit
|
|
val b = Unit
|
|
if (a != b) return "Fail a != b"
|
|
|
|
if (Unit != Unit) return "Fail Unit != Unit"
|
|
|
|
return "OK"
|
|
}
|