blob: b4e790475de3b0bff0a122a035e5e6bb1dd2ffb1 [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 JS_IR
// test.kt:9 box
// test.kt:4 foo
// test.kt:10 box
// EXPECTATIONS WASM
// test.kt:9 $box
// test.kt:4 $foo (12, 16)
// test.kt:10 $box