7 lines
165 B
Kotlin
Vendored
7 lines
165 B
Kotlin
Vendored
@Target(AnnotationTarget.EXPRESSION)
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
annotation class foo
|
|
|
|
fun f(s : String?) : Boolean {
|
|
return (@foo s?.equals("a"))!!
|
|
} |