903e969598
^KT-58132 Fixed
9 lines
208 B
Kotlin
Vendored
9 lines
208 B
Kotlin
Vendored
// ISSUE: KT-58132
|
|
|
|
const val hourInMilliseconds: Long = 60 * 60 * 1000
|
|
|
|
fun box(): String {
|
|
val expected = 3600000L
|
|
return if (hourInMilliseconds == expected) "OK" else "Fail: $hourInMilliseconds"
|
|
}
|