67e18c2d5c
default_trait_access: Fix wrong suggestion https://github.com/rust-lang/rust-clippy/issues/5975#issuecomment-683751131 > I think the underlying problem is clippy suggests code with complete parameters, not clippy triggers this lint even for complex types. AFAIK, If code compiles with `Default::default`, it doesn't need to specify any parameters, as type inference is working. (So, in this case, `default_trait_access` should suggest `RefCell::default`.) Fixes #5975 Fixes #5990 changelog: `default_trait_access`: fixed wrong suggestion