Files
kotlin/compiler/testData/codegen/box/classes/selfcreate.kt
2014-05-22 19:32:10 +04:00

11 lines
131 B
Kotlin

class B () {}
open class A(val b : B) {
fun a(): A = object: A(b) {}
}
fun box() : String {
A(B()).a()
return "OK"
}