Files
kotlin-fork/idea/testData/search/annotations/testAnnotationsWithParameters.kt
T
2013-01-15 15:32:02 +04:00

8 lines
228 B
Kotlin

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