Files
kotlin-fork/idea/jvm-debugger/jvm-debugger-test/testData/stepping/stepOver/soBreakpointWithInline.kt
T
2019-10-08 19:13:55 +09:00

12 lines
283 B
Kotlin
Vendored

package soBreakpointWithInline
fun foo() {}
fun main(args: Array<String>) {
//Breakpoint!
12.inlineExt().normalExt() // Try to step over this line. Debugger will stop on the same line twice
foo()
}
inline fun Any.inlineExt(): Any = this
fun Any.normalExt(): Any = this