Tests for KT-2255,KT-3032

This commit is contained in:
Vladimir Rudev
2013-01-10 00:11:21 +04:00
committed by Andrey Breslav
parent 8a7548bc84
commit 2201e63031
9 changed files with 130 additions and 0 deletions
@@ -0,0 +1,11 @@
class AA {
class B {
fun Int.bar() {
val a = this@AA
val b = this@B
val c = this
val c1 = this@b<caret>ar
}
}
}