Refactor stepping tests

This commit is contained in:
Natalia Ukhorskaya
2015-05-22 12:54:08 +03:00
parent cf163181f1
commit 5d9daf3890
42 changed files with 90 additions and 94 deletions
@@ -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()
}