summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/rc_mutex.stderr
blob: fe84361d781622b746522ed52e138bac237b2f46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
error: usage of `Rc<Mutex<_>>`
  --> $DIR/rc_mutex.rs:8:10
   |
LL |     foo: Rc<Mutex<i32>>,
   |          ^^^^^^^^^^^^^^
   |
   = note: `-D clippy::rc-mutex` implied by `-D warnings`
   = help: consider using `Rc<RefCell<_>>` or `Arc<Mutex<_>>` instead

error: usage of `Rc<Mutex<_>>`
  --> $DIR/rc_mutex.rs:26:18
   |
LL | fn test1<T>(foo: Rc<Mutex<T>>) {}
   |                  ^^^^^^^^^^^^
   |
   = help: consider using `Rc<RefCell<_>>` or `Arc<Mutex<_>>` instead

error: usage of `Rc<Mutex<_>>`
  --> $DIR/rc_mutex.rs:27:15
   |
LL | fn test2(foo: Rc<Mutex<MyEnum>>) {}
   |               ^^^^^^^^^^^^^^^^^
   |
   = help: consider using `Rc<RefCell<_>>` or `Arc<Mutex<_>>` instead

error: usage of `Rc<Mutex<_>>`
  --> $DIR/rc_mutex.rs:28:15
   |
LL | fn test3(foo: Rc<Mutex<SubT<usize>>>) {}
   |               ^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: consider using `Rc<RefCell<_>>` or `Arc<Mutex<_>>` instead

error: aborting due to 4 previous errors