Just ```fun test(): Int { return synchroni...
# multiplatform
g
Just
Copy code
fun test(): Int {
        return synchronized(this) {
            10
        }
}
👍 1