43c5c8b44f
Map class constructor calls to the literals they were generated from. #KT-46276
10 lines
146 B
Kotlin
Vendored
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
|