Minor, add regression test for KT-62788
This commit is contained in:
committed by
Space Team
parent
6b6808d87c
commit
555b35d894
@@ -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
|
||||
Reference in New Issue
Block a user