mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 00:21:35 +00:00
11 lines
266 B
Kotlin
Vendored
11 lines
266 B
Kotlin
Vendored
fun box(): String {
|
|
if (1L != 1.toLong()) return "fail 1"
|
|
if (0x1L != 0x1.toLong()) return "fail 2"
|
|
if (0X1L != 0X1.toLong()) return "fail 3"
|
|
if (0b1L != 0b1.toLong()) return "fail 4"
|
|
if (0B1L != 0B1.toLong()) return "fail 5"
|
|
|
|
return "OK"
|
|
}
|
|
|