// WITH_STDLIB // IGNORE_BACKEND: JS, JS_IR, JS_IR_ES6, WASM // !API_VERSION: 1.9 import kotlin.concurrent.* @OptIn(kotlin.ExperimentalStdlibApi::class) class LongWrapper(@Volatile var x: Long) val global = LongWrapper(1) fun box() : String { val local = LongWrapper(2) if (global.x + local.x != 3L) return "FAIL" global.x = 5 local.x = 6 return if (global.x + local.x != 11L) return "FAIL" else "OK" }