Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

explicit_auto_deref gives a wrong advise #9123

Closed
bachue opened this issue Jul 5, 2022 · 1 comment · Fixed by #9126
Closed

explicit_auto_deref gives a wrong advise #9123

bachue opened this issue Jul 5, 2022 · 1 comment · Fixed by #9126
Labels
C-bug Category: Clippy is not doing the correct thing

Comments

@bachue
Copy link

bachue commented Jul 5, 2022

Summary

I have this code

use std::{ops::Deref, io::Result};

struct A {}

struct AWrapper(A);

impl Deref for AWrapper {
    type Target = A;
    
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}

fn returns_a_wrapper() -> Result<AWrapper> {
    todo!()
}

fn accepts_a(_a: &A) {
    todo!()
}

fn main() -> Result<()> {
    accepts_a(&*returns_a_wrapper()?);
    Ok(())
}

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`

Reproducer

I tried this code:

use std::{ops::Deref, io::Result};

struct A {}

struct AWrapper(A);

impl Deref for AWrapper {
    type Target = A;
    
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}

fn returns_a_wrapper() -> Result<AWrapper> {
    todo!()
}

fn accepts_a(_a: &A) {
    todo!()
}

fn main() -> Result<()> {
    accepts_a(&*returns_a_wrapper()?);
    Ok(())
}

I expected this code has no warning, but cargo clippy gives wrong advise.

Version

rustc 1.62.0 (a8314ef7d 2022-06-27)
binary: rustc
commit-hash: a8314ef7d0ec7b75c336af2c9857bfaf43002bfc
commit-date: 2022-06-27
host: x86_64-unknown-linux-gnu
release: 1.62.0
LLVM version: 14.0.5

Additional Labels

No response

@bachue bachue added the C-bug Category: Clippy is not doing the correct thing label Jul 5, 2022
@Jarcho
Copy link
Contributor

Jarcho commented Jul 5, 2022

Related rust issue rust-lang/rust#23014

bors added a commit that referenced this issue Aug 8, 2022
`explicit_auto_deref` changes

fixes #9123
fixes #9109
fixes #9143
fixes #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
@bors bors closed this as completed in 4912c0e Aug 8, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-bug Category: Clippy is not doing the correct thing
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants