summaryrefslogtreecommitdiff
path: root/plugins/kotlin/analysis-api-providers-ide-impl/testData/annotationsResolver/annotations_in_brackets_syntax.kt
blob: c4218cca1229f080bc88ca8a99d7868ec88e9ad0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package foo.bar.baz

annotation class Ann1

annotation class Ann2

annotation class Ann3

@[Ann1]
@[Ann2 Ann2]
fun test<caret>() {}

// ANNOTATION: foo/bar/baz/Ann1, foo/bar/baz/Ann2