Rust is magic!
- I had an `Arc::new(something)`
- Deep inside `something` (in another file), it was not sync send
- Compile was okay because no multi-task/thread yet
But... still ... nice warning telling me something in something was not sync send
#rustlang #RobustCoding