932ad3e2c1
^KT-65665 fixed
5 lines
122 B
Kotlin
Vendored
5 lines
122 B
Kotlin
Vendored
interface I
|
|
class Delegating : I by <expr>compoundDelegate()</expr>
|
|
fun compoundDelegate(): I {
|
|
return object : I {}
|
|
} |