2021-09-08 14:31:47 +00:00
|
|
|
error: usage of `Rc<Mutex<_>>`
|
2021-07-15 08:44:10 +00:00
|
|
|
--> $DIR/rc_mutex.rs:8:10
|
|
|
|
|
|
|
|
|
LL | foo: Rc<Mutex<i32>>,
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::rc-mutex` implied by `-D warnings`
|
2021-09-08 14:31:47 +00:00
|
|
|
= help: consider using `Rc<RefCell<_>>` or `Arc<Mutex<_>>` instead
|
2021-07-15 08:44:10 +00:00
|
|
|
|
2021-09-08 14:31:47 +00:00
|
|
|
error: usage of `Rc<Mutex<_>>`
|
|
|
|
--> $DIR/rc_mutex.rs:26:18
|
2021-07-15 08:44:10 +00:00
|
|
|
|
|
2021-09-08 14:31:47 +00:00
|
|
|
LL | fn test1<T>(foo: Rc<Mutex<T>>) {}
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider using `Rc<RefCell<_>>` or `Arc<Mutex<_>>` instead
|
2021-07-15 08:44:10 +00:00
|
|
|
|
2021-09-08 14:31:47 +00:00
|
|
|
error: usage of `Rc<Mutex<_>>`
|
|
|
|
--> $DIR/rc_mutex.rs:27:15
|
|
|
|
|
|
|
|
|
LL | fn test2(foo: Rc<Mutex<MyEnum>>) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
2021-07-15 08:44:10 +00:00
|
|
|
|
|
2021-09-08 14:31:47 +00:00
|
|
|
= help: consider using `Rc<RefCell<_>>` or `Arc<Mutex<_>>` instead
|
2021-07-15 08:44:10 +00:00
|
|
|
|
2021-09-08 14:31:47 +00:00
|
|
|
error: usage of `Rc<Mutex<_>>`
|
|
|
|
--> $DIR/rc_mutex.rs:28:15
|
|
|
|
|
|
|
|
|
LL | fn test3(foo: Rc<Mutex<SubT<usize>>>) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
2021-07-15 08:44:10 +00:00
|
|
|
|
|
2021-09-08 14:31:47 +00:00
|
|
|
= help: consider using `Rc<RefCell<_>>` or `Arc<Mutex<_>>` instead
|
2021-07-15 08:44:10 +00:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|