c2c73189c8
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
20 lines
583 B
Plaintext
20 lines
583 B
Plaintext
error: deref on an immutable reference
|
|
--> $DIR/borrow_deref_ref_unfixable.rs:9:23
|
|
|
|
|
LL | let x: &str = &*s;
|
|
| ^^^
|
|
|
|
|
= note: `-D clippy::borrow-deref-ref` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::borrow_deref_ref)]`
|
|
help: if you would like to reborrow, try removing `&*`
|
|
|
|
|
LL | let x: &str = s;
|
|
| ~
|
|
help: if you would like to deref, try using `&**`
|
|
|
|
|
LL | let x: &str = &**s;
|
|
| ~~~~
|
|
|
|
error: aborting due to 1 previous error
|
|
|