[Test] Reproduce KT-64466
This commit is contained in:
committed by
Space Team
parent
be728d4291
commit
50abaaff7e
@@ -0,0 +1,17 @@
|
||||
// ISSUE: KT-64466
|
||||
|
||||
annotation class Ann
|
||||
|
||||
interface Base {
|
||||
@Ann
|
||||
fun func()
|
||||
|
||||
@Ann
|
||||
val prop: Int
|
||||
|
||||
var propWithAccessors: Int
|
||||
@Ann get
|
||||
@Ann set
|
||||
}
|
||||
|
||||
class Delegated(b: Base) : Base by b
|
||||
Reference in New Issue
Block a user