Refactor stepping tests
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
package memberGetterFromClass
|
||||
|
||||
class A {
|
||||
fun bar() {
|
||||
//Breakpoint!
|
||||
foo
|
||||
}
|
||||
|
||||
val foo: Int
|
||||
get() {
|
||||
val a = 1
|
||||
return 1
|
||||
}
|
||||
}
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
A().bar()
|
||||
}
|
||||
Reference in New Issue
Block a user