blob: e70d0a494568deb20d26a91618e6e40e734ccd8a [file] [log] [blame]
var b = true
@Target(AnnotationTarget.EXPRESSION)
@Retention(AnnotationRetention.SOURCE)
annotation class Ann
fun foo() {
if (@Ann <caret>b == true) {
}
}