JetPositionManager: add tests

This commit is contained in:
Natalia Ukhorskaya
2014-08-20 13:47:23 +04:00
parent e7ebf6fda2
commit 6b28ccbc9b
7 changed files with 60 additions and 3 deletions
@@ -0,0 +1,10 @@
class A {
fun foo() {
val a = {
fun innerFoo() {
val b = {} // A$foo$a$1$1
}
innerFoo()
}()
}
}