You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This code can be compiled now, but cargo clippy gives a warning:
24 | accepts_a(&*returns_a_wrapper()?);
| ^^^^^^^^^^^^^^^^^^^^^ help: try this: `returns_a_wrapper()?`
|
= note: `#[warn(clippy::explicit_auto_deref)]` on by default
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#explicit_auto_deref
But if I replace &*returns_a_wrapper() by &returns_a_wrapper(),then code is failed to be compiled, the error message is
error[[E0308]](https://doc.rust-lang.org/stable/error-index.html#E0308): `?` operator has incompatible types
--> src/main.rs:24:16
|
24 | accepts_a(&returns_a_wrapper()?);
| ^^^^^^^^^^^^^^^^^^^^ expected struct `A`, found struct `AWrapper`
|
= note: `?` operator cannot convert from `AWrapper` to `A`
`explicit_auto_deref` changes
fixes#9123fixes#9109fixes#9143fixes#9101
This avoid suggesting code which hits a rustc bug. Basically `&{x}` won't use auto-deref if the target type is `Sized`.
changelog: Don't suggest using auto deref for block expressions when the target type is `Sized`
changelog: Include the borrow in the suggestion for `explicit_auto_deref`
changelog: Don't lint `explicit_auto_deref` on `dyn Trait` return
changelog: Don't lint `explicit_auto_deref` when other adjustments are required
Summary
I have this code
This code can be compiled now, but
cargo clippy
gives a warning:But if I replace
&*returns_a_wrapper()
by&returns_a_wrapper()
,then code is failed to be compiled, the error message isReproducer
I tried this code:
I expected this code has no warning, but
cargo clippy
gives wrong advise.Version
Additional Labels
No response
The text was updated successfully, but these errors were encountered: