Files
kotlin-fork/analysis/low-level-api-fir/testData/lazyResolve/anonymousFunctionWithAnnotatedParameter.kt
Dmitrii Gridin 33e6a85a2d [LL FIR] rename testdata to testData to avoid copyright generation
We exclude testData pattern from copyright scope
2023-09-18 21:12:45 +00:00

8 lines
301 B
Kotlin
Vendored

@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)" } ?: ""