472ec72eb9
1. Move tests to their own module 2. Avoid sharing the 'tinyApp' project between tests 3. Clean up option directive handling
20 lines
382 B
Kotlin
Vendored
20 lines
382 B
Kotlin
Vendored
// FILE: stopInInlineInOtherFileDex.kt
|
|
// EMULATE_DEX: true
|
|
|
|
package stopInInlineInOtherFileDex
|
|
|
|
fun main(args: Array<String>) {
|
|
inlineFun()
|
|
}
|
|
|
|
// ADDITIONAL_BREAKPOINT: stopInInlineInOtherFileDex.Other.kt: Breakpoint 1
|
|
|
|
// FILE: stopInInlineInOtherFileDex.Other.kt
|
|
package stopInInlineInOtherFileDex
|
|
|
|
inline fun inlineFun() {
|
|
var i = 1
|
|
// Breakpoint 1
|
|
i++
|
|
i++
|
|
} |