| error: unnecessary structure name repetition |
| --> tests/ui/use_self_trait.rs:17:18 |
| | |
| LL | fn refs(p1: &Bad) -> &Bad { |
| | ^^^ help: use the applicable keyword: `Self` |
| | |
| = note: `-D clippy::use-self` implied by `-D warnings` |
| = help: to override `-D warnings` add `#[allow(clippy::use_self)]` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self_trait.rs:17:27 |
| | |
| LL | fn refs(p1: &Bad) -> &Bad { |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self_trait.rs:23:33 |
| | |
| LL | fn ref_refs<'a>(p1: &'a &'a Bad) -> &'a &'a Bad { |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self_trait.rs:23:49 |
| | |
| LL | fn ref_refs<'a>(p1: &'a &'a Bad) -> &'a &'a Bad { |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self_trait.rs:29:26 |
| | |
| LL | fn mut_refs(p1: &mut Bad) -> &mut Bad { |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self_trait.rs:29:39 |
| | |
| LL | fn mut_refs(p1: &mut Bad) -> &mut Bad { |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self_trait.rs:35:24 |
| | |
| LL | fn nested(_p1: Box<Bad>, _p2: (&u8, &Bad)) {} |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self_trait.rs:35:42 |
| | |
| LL | fn nested(_p1: Box<Bad>, _p2: (&u8, &Bad)) {} |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self_trait.rs:39:16 |
| | |
| LL | fn vals(_: Bad) -> Bad { |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self_trait.rs:39:24 |
| | |
| LL | fn vals(_: Bad) -> Bad { |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self_trait.rs:42:9 |
| | |
| LL | Bad |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self_trait.rs:48:19 |
| | |
| LL | type Output = Bad; |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self_trait.rs:51:23 |
| | |
| LL | fn mul(self, rhs: Bad) -> Bad { |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self_trait.rs:51:31 |
| | |
| LL | fn mul(self, rhs: Bad) -> Bad { |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self_trait.rs:60:9 |
| | |
| LL | Bad |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self_trait.rs:158:13 |
| | |
| LL | std::fmt::Error // Should lint |
| | ^^^^^^^^^^^^^^^ help: use the applicable keyword: `Self` |
| |
| error: aborting due to 16 previous errors |
| |