e2d96da396
Use this annotation in tests to ensure it works the same at least on JVM
14 lines
313 B
Kotlin
Vendored
14 lines
313 B
Kotlin
Vendored
@Volatile var vol = 1
|
|
@OptIn(ExperimentalStdlibApi::class)
|
|
@kotlin.concurrent.Volatile var vol2 = 1
|
|
@Transient val tra = 1
|
|
|
|
@Strictfp fun str() {}
|
|
@Synchronized fun sync() {}
|
|
|
|
// 0 kotlin/jvm/Volatile
|
|
// 0 kotlin/concurrent/Volatile
|
|
// 0 kotlin/jvm/Transient
|
|
// 0 kotlin/jvm/Strictfp
|
|
// 0 kotlin/jvm/Synchronized
|