| // RUN_PIPELINE_TILL: BACKEND |
| // FILE: test.kt |
| @Target(AnnotationTarget.VALUE_PARAMETER, AnnotationTarget.PROPERTY_GETTER, AnnotationTarget.PROPERTY_SETTER, AnnotationTarget.CONSTRUCTOR) |
| annotation class KotlinMessage |
| |
| data class KotlinResult @KotlinMessage constructor(@get:KotlinMessage @KotlinMessage val message: String = "") |
| |
| open class Some { |
| companion object { |
| @get:JvmName("getInstance") |
| <!NON_FINAL_MEMBER_IN_OBJECT!>open<!> val INSTANCE: String |
| get() = "Omega" |
| } |
| } |
| |
| /* GENERATED_FIR_TAGS: annotationDeclaration, annotationUseSiteTargetPropertyGetter, classDeclaration, companionObject, |
| data, getter, objectDeclaration, primaryConstructor, propertyDeclaration, stringLiteral */ |