What happens if we forget to freeze an object that...
# kotlin-native
s
What happens if we forget to freeze an object that is shared between threads with kotlin-native?
e
It will crash.
o
it depends on mechanism of sharing, with pure Kotlin mechanism, such as
schedule()
, transfer will fail with an exception, if use C interop-based mechanisms - it will behave incorrectly and may crash