| // LL_FIR_DIVERGENCE |
| // LL tests don't run common and platform checkers separately to report metadata-only diagnostics |
| // LL_FIR_DIVERGENCE |
| // RUN_PIPELINE_TILL: FRONTEND |
| // DIAGNOSTICS: -UNUSED_ANONYMOUS_PARAMETER |
| // LANGUAGE: +MultiPlatformProjects |
| |
| // MODULE: common |
| // FILE: common.kt |
| import kotlin.concurrent.Volatile |
| import kotlin.properties.Delegates |
| |
| class ConcurrentVolatile(<!VOLATILE_ON_VALUE!>@Volatile<!> val s: Int) { |
| <!VOLATILE_ON_VALUE!>@Volatile<!> val x = 0 |
| // ok |
| @Volatile var y = 1 |
| |
| <!VOLATILE_ON_DELEGATE!>@delegate:Volatile<!> var z: String by Delegates.observable("?") { prop, old, new -> old.hashCode() } |
| |
| <!VOLATILE_ON_VALUE!>@field:Volatile<!> val w = 2 |
| |
| <!WRONG_ANNOTATION_TARGET!>@Volatile<!> |
| var noBacking: String |
| get() = "" |
| set(value) {} |
| } |
| |
| // MODULE: jvm()()(common) |
| // FILE: jvm.kt |
| import kotlin.jvm.Volatile as JvmVolatile |
| import kotlin.concurrent.Volatile |
| import kotlin.properties.Delegates |
| |
| class ConcurrentVolatileOnJvm { |
| <!VOLATILE_ON_VALUE!>@Volatile<!> val x = 0 |
| // ok |
| @Volatile var y = 1 |
| |
| <!VOLATILE_ON_DELEGATE!>@delegate:Volatile<!> var z: String by Delegates.observable("?") { prop, old, new -> old.hashCode() } |
| |
| <!VOLATILE_ON_VALUE!>@field:Volatile<!> val w = 2 |
| |
| <!WRONG_ANNOTATION_TARGET!>@Volatile<!> |
| var noBacking: String |
| get() = "" |
| set(value) {} |
| } |
| |
| class JvmVolatile { |
| <!VOLATILE_ON_VALUE!>@JvmVolatile<!> val x = 0 |
| // ok |
| @JvmVolatile var y = 1 |
| |
| <!VOLATILE_ON_DELEGATE!>@delegate:JvmVolatile<!> var z: String by Delegates.observable("?") { prop, old, new -> old.hashCode() } |
| |
| <!VOLATILE_ON_VALUE!>@field:JvmVolatile<!> val w = 2 |
| |
| <!WRONG_ANNOTATION_TARGET!>@JvmVolatile<!> |
| var noBacking: String |
| get() = "" |
| set(value) {} |
| } |
| |
| /* GENERATED_FIR_TAGS: annotationUseSiteTargetField, annotationUseSiteTargetFieldDelegate, classDeclaration, getter, |
| integerLiteral, lambdaLiteral, nullableType, primaryConstructor, propertyDeclaration, propertyDelegate, setter, |
| starProjection, stringLiteral */ |