Files
kotlin-fork/idea/testData/search/annotations/testAnnotationsWithParameters.kt
T
2015-07-22 12:59:48 +03:00

11 lines
298 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: KotlinLightMethodForDeclaration:test1
// SEARCH: KotlinLightClass:Test1