blob: a301d6e0ca510211508d864e7d1f05d025435a38 [file]
// RUN_PIPELINE_TILL: BACKEND
// FIR_IDENTICAL
package util
@Target(AnnotationTarget.TYPE)
annotation class Anno(val str: String)
const val prop = "str"
fun foo() {
class Local {
val foo get() = bar
var bar: @Anno("bar $prop") List<@Anno("nested bar $prop") Collection<@Anno("nested nested bar $prop") Int>>? = null
var foo2 = bar
}
}
/* GENERATED_FIR_TAGS: annotationDeclaration, classDeclaration, const, functionDeclaration, getter, localClass,
nullableType, primaryConstructor, propertyDeclaration, stringLiteral */