blob: b9f9bbcf83e3733d4dea2909961ee1b7e06b0c33 [file]
// ISSUE: KT-58132
const val hourInMilliseconds: Long = 60 * 60 * 1000
fun box(): String {
val expected = 3600000L
return if (hourInMilliseconds == expected) "OK" else "Fail: $hourInMilliseconds"
}