1515fbe99f
^KT-60728
7 lines
174 B
Kotlin
7 lines
174 B
Kotlin
@Target(AnnotationTarget.EXPRESSION)
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
public annotation class Annotation(val name: String)
|
|
fun x() {}
|
|
|
|
@Annotation(<expr>"y"</expr>)
|
|
x() |