34 lines
523 B
Kotlin
Vendored
34 lines
523 B
Kotlin
Vendored
|
|
|
|
// FILE: test.kt
|
|
|
|
fun box() {
|
|
"OK"
|
|
fun bar() = "OK"
|
|
"OK"
|
|
bar()
|
|
"OK"
|
|
}
|
|
|
|
// EXPECTATIONS JVM_IR
|
|
// test.kt:6 box
|
|
// test.kt:8 box
|
|
// test.kt:9 box
|
|
// test.kt:7 box$bar
|
|
// test.kt:9 box
|
|
// test.kt:10 box
|
|
// test.kt:11 box
|
|
|
|
// EXPECTATIONS JS_IR
|
|
// test.kt:9 box
|
|
// test.kt:7 box$bar
|
|
// test.kt:11 box
|
|
|
|
// EXPECTATIONS WASM
|
|
// test.kt:6 $box (4, 4, 4, 4)
|
|
// test.kt:8 $box (4, 4, 4, 4)
|
|
// test.kt:9 $box (4, 4)
|
|
// test.kt:7 $box$bar (16, 16, 16, 16, 20)
|
|
// test.kt:10 $box (4, 4, 4, 4)
|
|
// test.kt:11 $box
|