| |
| // FILE: test.kt |
| |
| inline fun alsoInline() = "OK" |
| |
| inline fun ifoo(s: String = alsoInline()): String { |
| return s |
| } |
| |
| fun box(): String { |
| return ifoo() |
| } |
| |
| // EXPECTATIONS JVM_IR |
| // test.kt:11 box |
| // test.kt:6 box |
| // test.kt:4 box |
| // test.kt:6 box |
| // test.kt:7 box |
| // test.kt:11 box |
| |
| // EXPECTATIONS NATIVE |
| // test.kt:11 box |
| // test.kt:6 box |
| // test.kt:4 box |
| // test.kt:6 box |
| // test.kt:7 box |
| // test.kt:11 box |
| // test.kt:12 box |
| |
| // EXPECTATIONS JS_IR |
| // test.kt:11 box |
| |
| // EXPECTATIONS WASM |
| // test.kt:11 $box (11) |
| // test.kt:6 $box (28) |
| // test.kt:4 $box (26, 30) |
| // test.kt:7 $box (11, 4) |
| // test.kt:11 $box (4) |