Files
kotlin-fork/js/js.translator/testData/lineNumbers/longLiteral.kt
T
Sergej Jaskiewicz 43c5c8b44f [JS IR] Fix debug info for Char, Long, and unsigned integer literals
Map class constructor calls to the literals they were generated
from.

#KT-46276
2022-11-02 13:13:59 +00:00

10 lines
146 B
Kotlin
Vendored

fun foo() {
println(
23L)
println(
0L)
}
// LINES(JS): 3 * 5 1 6 2 4
// LINES(JS_IR): 1 1 2 3 4 5