7 lines
158 B
Kotlin
Vendored
7 lines
158 B
Kotlin
Vendored
@Target(AnnotationTarget.EXPRESSION)
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
annotation class MyAnnotation
|
|
|
|
fun test() {
|
|
val x = @MyAnnotation(<caret>) 5
|
|
} |