Files
Alexander Korepanov 6df0e0c847 [JS FIR] Enable FirJsLineNumberTests for FIR
^KT-64426 Fixed
2024-01-10 19:02:15 +00:00

9 lines
152 B
Kotlin
Vendored

fun foo() {
var x = "foo"
println("before: $x")
js("console.log('js' + x);")
println("after: $x")
}
// LINES(JS_IR): 1 1 2 3 3 4 4 5 5