blob: 9bcfdbb4ed11db571a1790be84be619be02c4f9f [file]
// FILE: test.kt
fun foo() = prop
val prop = 1
fun box() {
foo()
}
// EXPECTATIONS JVM_IR
// test.kt:9 box
// test.kt:4 foo
// test.kt:9 box
// test.kt:10 box
// EXPECTATIONS NATIVE
// test.kt:9 box
// test.kt:4 foo
// test.kt:6 <get-prop>
// test.kt:4 foo
// test.kt:10 box
// EXPECTATIONS JS_IR
// test.kt:9 box
// test.kt:4 foo
// test.kt:10 box
// EXPECTATIONS WASM
// test.kt:9 $box (4)
// test.kt:4 $foo (12, 16)
// test.kt:9 $box (4)
// test.kt:10 $box (1)