blob: 6effd2fd1214dcb73eba68909f5d729c02970ddc [file]
// FILE: test.kt
// Comment before
fun foo(i: Int = 1): Int {
return i
}
fun box() {
foo()
}
// EXPECTATIONS JVM_IR
// test.kt:10 box
// test.kt:6 foo
// test.kt:10 box
// test.kt:11 box
// EXPECTATIONS NATIVE
// test.kt:10 box
// test.kt:5 foo$default
// test.kt:7 foo$default
// test.kt:5 foo$default
// test.kt:5 foo
// test.kt:6 foo
// test.kt:7 foo
// test.kt:5 foo$default
// test.kt:7 foo$default
// test.kt:11 box
// EXPECTATIONS JS_IR
// test.kt:10 box
// test.kt:11 box
// EXPECTATIONS WASM
// test.kt:10 $box (4)
// test.kt:5 $foo$default (17)
// test.kt:6 $foo (11, 4)
// test.kt:5 $foo$default (17)
// test.kt:10 $box (4)
// test.kt:11 $box (1)