Victor Ermolaev
02/26/2021, 12:23 PM@SerialInfo
@Target(AnnotationTarget.PROPERTY, AnnotationTarget.CLASS, AnnotationTarget.TYPE)
annotation class Ann
and then a class
@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?