Files
kotlin-fork/compiler/testData/codegen/box/constants/literalToLongConversion.kt
T
2023-04-25 09:36:17 +00:00

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"
}