Files
kotlin-fork/idea/jvm-debugger/jvm-debugger-test/testData/evaluation/singleBreakpoint/methodWithBreakpoint.kt
T
2019-10-08 19:13:55 +09:00

15 lines
185 B
Kotlin
Vendored

package methodWithBreakpoint
fun main(args: Array<String>) {
//Breakpoint!
args.size
}
fun foo(): Int {
//Breakpoint!
return 1
}
// EXPRESSION: foo()
// RESULT: 1: I