Files
kotlin-fork/idea/testData/intentions/simplifyBooleanWithConstants/withAnnotation.kt.after
T

11 lines
157 B
Plaintext
Vendored

var b = true
@Target(AnnotationTarget.EXPRESSION)
@Retention(AnnotationRetention.SOURCE)
annotation class Ann
fun foo() {
if (@Ann <caret>b) {
}
}