Refactor and generate tests on JetPositionManager

This commit is contained in:
Alexander Udalov
2014-09-24 12:11:51 +04:00
parent 9f7979d0ce
commit b5832d2656
29 changed files with 235 additions and 174 deletions
@@ -0,0 +1,10 @@
class A {
fun foo() {
val a = {
fun innerFoo() {
val b = {} // A$foo$a$1$1
}
innerFoo()
}()
}
}