Move debugger test data to the new location
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
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
|
||||
Reference in New Issue
Block a user