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,13 @@
package extFun
class A
fun A.bar() {
val a = 1
}
fun main(args: Array<String>) {
val a = A()
//Breakpoint!
a.bar()
}