FIR: Take targeted annotations into account for metadata

Getter/setter targeted annotations were not correctly reflected
in the kotlin metadata which made them not work with
kotlin-reflect.
This commit is contained in:
Mads Ager
2021-03-01 16:42:54 +01:00
committed by Mikhail Glukhikh
parent 2a170652c5
commit 8e9dfc23b6
2 changed files with 15 additions and 6 deletions
@@ -1,4 +1,3 @@
// IGNORE_BACKEND_FIR: JVM_IR
// WITH_REFLECT
// TARGET_BACKEND: JVM
@@ -28,4 +27,5 @@ class LateinitProperties {
fun box(): String {
LateinitProperties().test()
return "OK"
}
}