Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/annotations/annotationsOnDelegatedMembers.kt
T
Alexander Udalov f0fba7be64 K2: add bytecode listing tests
#KT-57171 Fixed
2023-03-14 21:57:26 +01:00

14 lines
337 B
Kotlin
Vendored

// IGNORE_BACKEND_K2: JVM_IR
// FIR status: KT-57228 K2: annotations for interface member properties implemented by delegation are copied
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