a89dbfcfd4
#KT-3741 Fixed
12 lines
288 B
Kotlin
Vendored
12 lines
288 B
Kotlin
Vendored
@MyAnnotation("f", "s") fun test1() {}
|
|
|
|
@MyAnnotation("f", "s") class Test1() {}
|
|
|
|
@MyAnnotation("f", "s") val test3 = 1
|
|
|
|
annotation class MyAnnotation(val first: String, val second: String)
|
|
|
|
// ANNOTATION: MyAnnotation
|
|
// SEARCH: method:test1
|
|
// SEARCH: class:Test1
|
|
// SEARCH: field:test3 |