2021-09-08 14:31:47 +00:00
|
|
|
error: derefed type is same as origin
|
2022-04-07 17:39:59 +00:00
|
|
|
--> $DIR/needless_option_as_deref.rs:8:29
|
2021-09-08 14:31:47 +00:00
|
|
|
|
|
|
|
|
LL | let _: Option<&usize> = Some(&1).as_deref();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: try this: `Some(&1)`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::needless-option-as-deref` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: derefed type is same as origin
|
2022-04-07 17:39:59 +00:00
|
|
|
--> $DIR/needless_option_as_deref.rs:9:33
|
2021-09-08 14:31:47 +00:00
|
|
|
|
|
|
|
|
LL | let _: Option<&mut usize> = Some(&mut 1).as_deref_mut();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `Some(&mut 1)`
|
|
|
|
|
2022-04-07 17:39:59 +00:00
|
|
|
error: derefed type is same as origin
|
|
|
|
--> $DIR/needless_option_as_deref.rs:13:13
|
|
|
|
|
|
|
|
|
LL | let _ = x.as_deref_mut();
|
|
|
|
| ^^^^^^^^^^^^^^^^ help: try this: `x`
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2021-09-08 14:31:47 +00:00
|
|
|
|