]> git.lizzy.rs Git - rust.git/blob - tests/ui/needless_borrow.stderr
Don't lint `if_same_then_else` with `if let` conditions
[rust.git] / tests / ui / needless_borrow.stderr
1 error: this expression borrows a reference (`&i32`) that is immediately dereferenced by the compiler
2   --> $DIR/needless_borrow.rs:9:15
3    |
4 LL |     let _ = x(&&a); // warn
5    |               ^^^ help: change this to: `&a`
6    |
7    = note: `-D clippy::needless-borrow` implied by `-D warnings`
8
9 error: this expression borrows a reference (`&mut i32`) that is immediately dereferenced by the compiler
10   --> $DIR/needless_borrow.rs:13:13
11    |
12 LL |     mut_ref(&mut &mut b); // warn
13    |             ^^^^^^^^^^^ help: change this to: `&mut b`
14
15 error: this expression borrows a reference (`&i32`) that is immediately dereferenced by the compiler
16   --> $DIR/needless_borrow.rs:25:13
17    |
18 LL |             &&a
19    |             ^^^ help: change this to: `&a`
20
21 error: this expression borrows a reference (`&i32`) that is immediately dereferenced by the compiler
22   --> $DIR/needless_borrow.rs:27:15
23    |
24 LL |         46 => &&a,
25    |               ^^^ help: change this to: `&a`
26
27 error: this expression borrows a reference (`&i32`) that is immediately dereferenced by the compiler
28   --> $DIR/needless_borrow.rs:33:27
29    |
30 LL |                     break &ref_a;
31    |                           ^^^^^^ help: change this to: `ref_a`
32
33 error: this expression borrows a reference (`&i32`) that is immediately dereferenced by the compiler
34   --> $DIR/needless_borrow.rs:40:15
35    |
36 LL |     let _ = x(&&&a);
37    |               ^^^^ help: change this to: `&a`
38
39 error: this expression borrows a reference (`&i32`) that is immediately dereferenced by the compiler
40   --> $DIR/needless_borrow.rs:41:15
41    |
42 LL |     let _ = x(&mut &&a);
43    |               ^^^^^^^^ help: change this to: `&a`
44
45 error: this expression borrows a reference (`&mut i32`) that is immediately dereferenced by the compiler
46   --> $DIR/needless_borrow.rs:42:15
47    |
48 LL |     let _ = x(&&&mut b);
49    |               ^^^^^^^^ help: change this to: `&mut b`
50
51 error: this expression borrows a reference (`&i32`) that is immediately dereferenced by the compiler
52   --> $DIR/needless_borrow.rs:43:15
53    |
54 LL |     let _ = x(&&ref_a);
55    |               ^^^^^^^ help: change this to: `ref_a`
56
57 error: this expression borrows a reference (`&mut i32`) that is immediately dereferenced by the compiler
58   --> $DIR/needless_borrow.rs:46:11
59    |
60 LL |         x(&b);
61    |           ^^ help: change this to: `b`
62
63 error: aborting due to 10 previous errors
64