Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/annotations/annotationsOnDelegatedMembers.kt
T
2023-05-22 20:12:29 +00:00

11 lines
198 B
Kotlin
Vendored

annotation class Ann
interface IFoo {
@Ann val testVal: String
@Ann fun testFun()
@Ann val String.testExtVal: String
@Ann fun String.testExtFun()
}
class DFoo(d: IFoo) : IFoo by d