07d3e3a5bd
`is PropertyDescriptor` check doesn't work for JVM IR where descriptor is created on-the-fly and is an `IrBasedSimpleFunctionDescriptor`. #KT-49682
10 lines
167 B
Kotlin
Vendored
10 lines
167 B
Kotlin
Vendored
annotation class Anno
|
|
|
|
@Target(AnnotationTarget.PROPERTY, AnnotationTarget.CLASS)
|
|
annotation class Anno2
|
|
|
|
class Test {
|
|
@property:[Anno Anno2]
|
|
val prop = "A"
|
|
}
|