[IR] Move annotations from original to new constructor declarations.
LocalDeclarationsLowering did not move annotations when creating a new constructor declaration, thereby losing the annotations. Fixes KT-45298
This commit is contained in:
committed by
Alexander Udalov
parent
965c118521
commit
e5631addf3
Vendored
+19
@@ -0,0 +1,19 @@
|
||||
// WITH_REFLECT
|
||||
// TARGET_BACKEND: JVM
|
||||
// FILE: Ann.java
|
||||
import java.lang.annotation.*;
|
||||
|
||||
@Target({ElementType.CONSTRUCTOR})
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
public @interface Ann {}
|
||||
|
||||
// FILE: box.kt
|
||||
fun box(): String {
|
||||
class C(val x: String, val y: String) {
|
||||
@Ann
|
||||
constructor(v: String): this(v, v)
|
||||
}
|
||||
|
||||
require(C::class.java.getDeclaredConstructor(String::class.java).getAnnotation(Ann::class.java) != null) { "no Ann on constructor" }
|
||||
return "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user