7 lines
149 B
Plaintext
Vendored
7 lines
149 B
Plaintext
Vendored
@Target(AnnotationTarget.EXPRESSION)
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
annotation class MyAnnotation
|
|
|
|
fun test() {
|
|
val x = @MyAnnotation 5
|
|
} |