KT-3523: VerifyError for invoke function in inner class

KT-4106: VerifyError: Can't access outer this in a lambda in inner class' constructor
KT-3152: VerifyError when accessing from a function of object to a field of outer outer class

  #KT-3523 Fixed
  #KT-4106 Fixed
  #KT-3152 Fixed
This commit is contained in:
Mikhael Bogdanov
2013-10-30 16:00:17 +04:00
parent 10396b853a
commit c325dfffd9
5 changed files with 89 additions and 17 deletions
@@ -0,0 +1,14 @@
public class Test {
val content = 1
inner class A {
val v = object {
fun f() = content
}
}
}
fun box(): String {
Test().A()
return "OK"
}