8e8de513ee
^KT-60892
18 lines
412 B
Kotlin
Vendored
18 lines
412 B
Kotlin
Vendored
// WITH_STDLIB
|
|
// IGNORE_BACKEND: JS, JS_IR, JS_IR_ES6, WASM
|
|
// !API_VERSION: 1.9
|
|
|
|
import kotlin.concurrent.*
|
|
|
|
@OptIn(kotlin.ExperimentalStdlibApi::class)
|
|
class StringWrapper(@Volatile var x: String)
|
|
|
|
val global = StringWrapper("FA")
|
|
|
|
fun box() : String {
|
|
val local = StringWrapper("IL")
|
|
if (global.x + local.x != "FAIL") return "FAIL"
|
|
global.x = "O"
|
|
local.x = "K"
|
|
return global.x + local.x
|
|
} |