Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/annotations/annotationsOnDelegatedMembers.kt
T
2023-12-26 10:18:19 +00:00

13 lines
231 B
Kotlin
Vendored

// JVM_ABI_K1_K2_DIFF: KT-63828
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