Files
kotlin-fork/idea/testData/search/annotations/testAnnotationsWithParameters.kt
T

9 lines
260 B
Kotlin

MyAnnotation("f", "s") fun test1() {}
MyAnnotation("f", "s") class Test1() {}
annotation class MyAnnotation(val first: String, val second: String)
// ANNOTATION: MyAnnotation
// SEARCH: KotlinLightMethodForDeclaration:test1
// SEARCH: KotlinLightClass:Test1