37 lines
553 B
Kotlin
Vendored
37 lines
553 B
Kotlin
Vendored
|
|
|
|
// FILE: test.kt
|
|
|
|
fun box() {
|
|
"OK"
|
|
fun bar() {
|
|
"OK"
|
|
}
|
|
"OK"
|
|
bar()
|
|
"OK"
|
|
}
|
|
|
|
// EXPECTATIONS JVM_IR
|
|
// test.kt:6 box
|
|
// test.kt:10 box
|
|
// test.kt:11 box
|
|
// test.kt:8 box$bar
|
|
// test.kt:9 box$bar
|
|
// test.kt:12 box
|
|
// test.kt:13 box
|
|
|
|
// EXPECTATIONS JS_IR
|
|
// test.kt:11 box
|
|
// test.kt:9 box$bar
|
|
// test.kt:13 box
|
|
|
|
// EXPECTATIONS WASM
|
|
// test.kt:6 $box (4, 4, 4, 4)
|
|
// test.kt:10 $box (4, 4, 4, 4)
|
|
// test.kt:11 $box
|
|
// test.kt:8 $box$bar (8, 8, 8, 8)
|
|
// test.kt:9 $box$bar
|
|
// test.kt:12 $box (4, 4, 4, 4)
|
|
// test.kt:13 $box
|