Files
kotlin-fork/analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/delegatedSuperEntry.kt
T
2024-02-12 20:38:23 +00:00

5 lines
122 B
Kotlin
Vendored

interface I
class Delegating : I by <expr>compoundDelegate()</expr>
fun compoundDelegate(): I {
return object : I {}
}