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

30 lines
496 B
Kotlin
Vendored

class A {
fun box() {
bar(
this,
null,
0,
1,
"2",
true,
false
)
bar(
true,
false,
0,
1,
"2",
this,
null
)
}
}
fun bar(vararg x: Any?) {
println(x)
}
// LINES(JS_IR): 1 1 2 3 4 5 6 7 8 9 10 13 14 15 16 17 18 19 20 25 25 26 26