Files
kotlin-fork/idea/testData/search/annotations/testAnnotationsWithParameters.kt
T
2012-10-05 12:07:31 +04:00

8 lines
225 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, JetLightClass:Test1