Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
constants
/
literalToLongConversion.kt
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"
}