[Test] Reproduce KT-64466

This commit is contained in:
Dmitriy Novozhilov
2024-01-11 13:31:44 +02:00
committed by Space Team
parent be728d4291
commit 50abaaff7e
16 changed files with 542 additions and 0 deletions
@@ -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