Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/rendering/unusedValue.fir.kt
T

13 lines
286 B
Kotlin
Vendored

// !RENDER_DIAGNOSTICS_MESSAGES
// !DIAGNOSTICS: -ASSIGNED_BUT_NEVER_ACCESSED_VARIABLE
@Target(AnnotationTarget.PROPERTY, AnnotationTarget.FUNCTION, AnnotationTarget.TYPE, AnnotationTarget.LOCAL_VARIABLE)
annotation class A
@A
fun test() {
@A
var b: @A Int = 0
b = 15
}