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:
@@ -0,0 +1,9 @@
|
||||
fun box() : String {
|
||||
val o = object {
|
||||
|
||||
class C {
|
||||
fun foo() = "OK"
|
||||
}
|
||||
}
|
||||
return o.C().foo()
|
||||
}
|
||||
Reference in New Issue
Block a user