generation of inner classes inside object literal. #KT-2607 fixed

on the way ClassCodegen and MemberCodegen refactored out and injectors regenerated
This commit is contained in:
Alex Tkachman
2012-09-20 17:57:07 +03:00
parent 00d7a0a8ae
commit be09227569
12 changed files with 152 additions and 245 deletions
@@ -0,0 +1,9 @@
fun box() : String {
val o = object {
class C {
fun foo() = "OK"
}
}
return o.C().foo()
}