ebb9659e03
Currently JVM IR is not supported in kapt, so almost all tests are failing, and thus are muted with IGNORE_BACKEND. #KT-49682
26 lines
467 B
Kotlin
Vendored
26 lines
467 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
|
|
@Target(AnnotationTarget.FIELD)
|
|
annotation class FieldAnno
|
|
|
|
@Target(AnnotationTarget.PROPERTY)
|
|
annotation class PropertyAnno
|
|
|
|
@Target(AnnotationTarget.VALUE_PARAMETER)
|
|
annotation class ParameterAnno
|
|
|
|
annotation class Anno
|
|
|
|
class Foo(@FieldAnno @PropertyAnno @ParameterAnno @Anno val a: String)
|
|
|
|
class Bar {
|
|
@FieldAnno @PropertyAnno @Anno
|
|
val a: String = ""
|
|
}
|
|
|
|
class Baz {
|
|
@FieldAnno @Anno
|
|
@JvmField
|
|
val a: String = ""
|
|
}
|