Minor, add regression test for KT-62788

This commit is contained in:
Alexander Udalov
2024-02-22 13:39:57 +01:00
committed by Space Team
parent 6b6808d87c
commit 555b35d894
6 changed files with 96 additions and 0 deletions
@@ -0,0 +1,16 @@
@Retention(AnnotationRetention.BINARY)
annotation class MyAnnotation
interface MyInterface {
@MyAnnotation
fun foo() {
}
}
interface I1 : MyInterface
interface I2 : MyInterface {
override fun foo() {}
}
class MyClass : I1, I2