mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
12 lines
329 B
Rust
12 lines
329 B
Rust
#![warn(clippy::arc_with_non_send_sync)]
|
|
#![allow(unused_variables)]
|
|
use std::cell::RefCell;
|
|
use std::sync::{Arc, Mutex};
|
|
|
|
fn main() {
|
|
// This is safe, as `i32` implements `Send` and `Sync`.
|
|
let a = Arc::new(42);
|
|
|
|
// This is not safe, as `RefCell` does not implement `Sync`.
|
|
let b = Arc::new(RefCell::new(42));
|
|
}
|