mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 08:31:38 +00:00
7 lines
122 B
Kotlin
Vendored
7 lines
122 B
Kotlin
Vendored
import kotlin.jvm.Volatile
|
|
|
|
class My {
|
|
<!VOLATILE_ON_VALUE!>@Volatile<!> val x = 0
|
|
// ok
|
|
@Volatile var y = 1
|
|
} |