blob: eacc203f0719464fa62f4373537845981da70bd9 [file]
@Target(AnnotationTarget.TYPE)
annotation class Anno(val message: String)
val nullablePropertyWithAnnotatedType: @Anno("outer") List<@Anno("middle") List<@Anno("inner") Int>>?
get() = null
val proper<caret>tyToResolve: String
get() = nullablePropertyWithAnnotatedType.let { " ($it)" }