rust/tests/ui/rc_mutex.stderr

23 lines
681 B
Plaintext

error: Found `Rc<Mutex<_>>`. Consider using `Rc<RefCell<_>>` instead
--> $DIR/rc_mutex.rs:21:22
|
LL | pub fn test1<T>(foo: Rc<Mutex<T>>) {}
| ^^^^^^^^^^^^
|
= note: `-D clippy::rc-mutex` implied by `-D warnings`
error: Found `Rc<Mutex<_>>`. Consider using `Rc<RefCell<_>>` instead
--> $DIR/rc_mutex.rs:23:19
|
LL | pub fn test2(foo: Rc<Mutex<MyEnum>>) {}
| ^^^^^^^^^^^^^^^^^
error: Found `Rc<Mutex<_>>`. Consider using `Rc<RefCell<_>>` instead
--> $DIR/rc_mutex.rs:25:19
|
LL | pub fn test3(foo: Rc<Mutex<SubT<usize>>>) {}
| ^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to 3 previous errors