I’ve got a custom annotation as such ```@SerialInf...
# serialization
v
I’ve got a custom annotation as such
Copy code
@SerialInfo
@Target(AnnotationTarget.PROPERTY, AnnotationTarget.CLASS, AnnotationTarget.TYPE)
annotation class Ann
and then a class
Copy code
@Serializable
data class C( @Ann val inner: List<@Ann Int>)
I can access
Ann
on the level of the
inner
field, but not on the type level. Has anyone faced a similar problem?