Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/annotations/kt62788.kt
T
2024-02-23 09:02:03 +00:00

17 lines
246 B
Kotlin
Vendored

@Retention(AnnotationRetention.BINARY)
annotation class MyAnnotation
interface MyInterface {
@MyAnnotation
fun foo() {
}
}
interface I1 : MyInterface
interface I2 : MyInterface {
override fun foo() {}
}
class MyClass : I1, I2