Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/annotations/annotationsOnDelegatedMembers.kt
T
2020-10-29 16:23:02 +03:00

10 lines
197 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