Files
kotlin-fork/idea/testData/intentions/simplifyBooleanWithConstants/withAnnotation.kt
T
2017-07-26 15:18:30 +03:00

10 lines
126 B
Kotlin
Vendored

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