blob: bb0ccd62cb49943914664f20f5e7030f43b44035 [file]
// FIR_IDENTICAL
// RUN_PIPELINE_TILL: BACKEND
// ISSUE: KT-76931
const val myConst = 1
fun main() {
@Anno(myConst)
do {
val myConst = 2
} while (false)
}
@Retention(AnnotationRetention.SOURCE)
@Target(AnnotationTarget.EXPRESSION)
annotation class Anno(val value: Int)
/* GENERATED_FIR_TAGS: annotationDeclaration, const, doWhileLoop, functionDeclaration, integerLiteral, localProperty,
primaryConstructor, propertyDeclaration */