c549c63100
When getting annotations for KtLightParameter which is property parameter we should return annotations for parameter instead of property #KT-19671 Fixed
5 lines
199 B
Kotlin
Vendored
5 lines
199 B
Kotlin
Vendored
annotation class MyAnnotation
|
|
|
|
class Test1(@MyAnnotation var bar: Int)
|
|
|
|
class Test2(@get:MyAnnotation @set:MyAnnotation @setparam:MyAnnotation @property:MyAnnotation @field:MyAnnotation var bar: Int) |