Files
kotlin-fork/idea/testData/search/annotations/testAnnotationsWithParameters.kt
T
2016-04-08 21:11:19 +03:00

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