11 lines
165 B
Kotlin
Vendored
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) {
|
|
|
|
}
|
|
} |