e6f4d6e6fa
^KT-65406
26 lines
353 B
Kotlin
Vendored
26 lines
353 B
Kotlin
Vendored
abstract class Base {
|
|
val lambda: Function0<Any>
|
|
field = lambda
|
|
get
|
|
|
|
constructor(lambda: Function0<Any>) /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
object Test : Base {
|
|
private constructor() /* primary */ {
|
|
super/*Base*/(lambda = local fun <anonymous>(): Any {
|
|
return Test
|
|
}
|
|
)
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
}
|
|
|