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

11 lines
165 B
Kotlin
Vendored

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