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

11 lines
227 B
Kotlin
Vendored

package smartStepIntoComponentFunction
data class Test(val a: Int, val b: Int)
fun main(args: Array<String>) {
val t = Test(12, 2)
// SMART_STEP_INTO_BY_INDEX: 1
// RESUME: 1
//Breakpoint!
t.component2()
}