rust-clippy/tests/ui/borrow_deref_ref.stderr

23 lines
769 B
Text
Raw Normal View History

2022-05-29 01:57:15 +00:00
error: deref on an immutable reference
--> $DIR/borrow_deref_ref.rs:14:17
2022-05-29 01:57:15 +00:00
|
LL | let b = &*a;
| ^^^ help: if you would like to reborrow, try removing `&*`: `a`
|
= note: `-D clippy::borrow-deref-ref` implied by `-D warnings`
error: deref on an immutable reference
--> $DIR/borrow_deref_ref.rs:16:22
2022-05-29 01:57:15 +00:00
|
LL | let b = &mut &*bar(&12);
| ^^^^^^^^^^ help: if you would like to reborrow, try removing `&*`: `bar(&12)`
error: deref on an immutable reference
--> $DIR/borrow_deref_ref.rs:70:23
2022-05-29 01:57:15 +00:00
|
LL | let addr_y = &&*x as *const _ as usize; // assert ok
| ^^^ help: if you would like to reborrow, try removing `&*`: `x`
error: aborting due to 3 previous errors
2022-05-29 01:57:15 +00:00