blob: 0f4ec342df2671a634132ca52e39a0e7a4091787 [file] [log] [blame]
/*
* Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package kotlinx.coroutines.internal
internal expect class CommonThreadLocal<T>() {
fun get(): T
fun set(value: T)
}