2021-06-05 13:28:52 +00:00
|
|
|
error: found `Rc<Mutex<_>>`. Consider using `Rc<RefCell<_>>` or `Arc<Mutex<_>>` instead
|
2021-06-05 14:42:48 +00:00
|
|
|
--> $DIR/rc_mutex.rs:8:10
|
2021-06-05 13:20:02 +00:00
|
|
|
|
|
|
|
|
LL | foo: Rc<Mutex<i32>>,
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::rc-mutex` implied by `-D warnings`
|
|
|
|
|
2021-06-05 13:28:52 +00:00
|
|
|
error: found `Rc<Mutex<_>>`. Consider using `Rc<RefCell<_>>` or `Arc<Mutex<_>>` instead
|
2021-06-05 14:42:48 +00:00
|
|
|
--> $DIR/rc_mutex.rs:20:22
|
2021-06-03 06:56:34 +00:00
|
|
|
|
|
|
|
|
LL | pub fn test1<T>(foo: Rc<Mutex<T>>) {}
|
2021-06-05 12:53:24 +00:00
|
|
|
| ^^^^^^^^^^^^
|
2021-06-03 06:56:34 +00:00
|
|
|
|
2021-06-05 13:28:52 +00:00
|
|
|
error: found `Rc<Mutex<_>>`. Consider using `Rc<RefCell<_>>` or `Arc<Mutex<_>>` instead
|
2021-06-05 14:42:48 +00:00
|
|
|
--> $DIR/rc_mutex.rs:22:19
|
2021-06-03 06:56:34 +00:00
|
|
|
|
|
|
|
|
LL | pub fn test2(foo: Rc<Mutex<MyEnum>>) {}
|
2021-06-05 12:53:24 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
2021-06-03 06:56:34 +00:00
|
|
|
|
2021-06-05 13:28:52 +00:00
|
|
|
error: found `Rc<Mutex<_>>`. Consider using `Rc<RefCell<_>>` or `Arc<Mutex<_>>` instead
|
2021-06-05 14:42:48 +00:00
|
|
|
--> $DIR/rc_mutex.rs:24:19
|
2021-06-03 06:56:34 +00:00
|
|
|
|
|
|
|
|
LL | pub fn test3(foo: Rc<Mutex<SubT<usize>>>) {}
|
2021-06-05 12:53:24 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
2021-06-03 06:56:34 +00:00
|
|
|
|
2021-06-05 13:20:02 +00:00
|
|
|
error: aborting due to 4 previous errors
|
2021-06-03 06:56:34 +00:00
|
|
|
|