34 lines
591 B
Kotlin
Vendored
34 lines
591 B
Kotlin
Vendored
// IGNORE_INLINER: IR
|
|
// FILE: test.kt
|
|
|
|
fun box() {
|
|
val a = foo()
|
|
a()
|
|
}
|
|
// FILE: test1.kt
|
|
// aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
|
|
inline fun foo() = {
|
|
}
|
|
// EXPECTATIONS JVM JVM_IR
|
|
// test.kt:5 box
|
|
// test1.kt:10 box
|
|
// test1.kt:11 box
|
|
// EXPECTATIONS JVM_IR
|
|
// test.kt:5 box
|
|
// test.kt:6 box
|
|
// test1.kt:11 invoke
|
|
// test.kt:6 box
|
|
// EXPECTATIONS JVM_IR
|
|
// test.kt:7 box
|
|
// EXPECTATIONS JVM
|
|
// test.kt:5 box
|
|
// test.kt:6 box
|
|
// test.kt:7 box
|
|
|
|
// EXPECTATIONS JS_IR
|
|
// test1.kt:11 box
|
|
// test.kt:5 box
|
|
// test.kt:6 box
|
|
// test1.kt:8 box$lambda
|
|
// test.kt:7 box
|