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

16 lines
194 B
Kotlin
Vendored

package skipSimpleGetterMethodWithProperty
fun main(args: Array<String>) {
//Breakpoint!
test()
foo()
}
fun test() {
var a = 12
foo()
}
fun foo() {}
// SKIP_GETTERS: true