41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
11 lines
128 B
Kotlin
11 lines
128 B
Kotlin
class B () {}
|
|
|
|
open class A(val b : B) {
|
|
fun a() = object: A(b) {}
|
|
}
|
|
|
|
fun box() : String {
|
|
A(B()).a()
|
|
return "OK"
|
|
}
|