| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:26:21 |
| | |
| LL | fn new() -> Foo { |
| | ^^^ 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.rs:28:13 |
| | |
| LL | Foo {} |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:31:22 |
| | |
| LL | fn test() -> Foo { |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:33:13 |
| | |
| LL | Foo::new() |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:39:25 |
| | |
| LL | fn default() -> Foo { |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:41:13 |
| | |
| LL | Foo::new() |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:83:28 |
| | |
| LL | fn clone(&self) -> Foo<'a> { |
| | ^^^^^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:117:24 |
| | |
| LL | fn bad(foos: &[Foo]) -> impl Iterator<Item = &Foo> { |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:117:55 |
| | |
| LL | fn bad(foos: &[Foo]) -> impl Iterator<Item = &Foo> { |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:134:13 |
| | |
| LL | TS(0) |
| | ^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:170:29 |
| | |
| LL | fn bar() -> Bar { |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:172:21 |
| | |
| LL | Bar { foo: Foo {} } |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:184:21 |
| | |
| LL | fn baz() -> Foo { |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:186:13 |
| | |
| LL | Foo {} |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:204:21 |
| | |
| LL | let _ = Enum::B(42); |
| | ^^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:206:21 |
| | |
| LL | let _ = Enum::C { field: true }; |
| | ^^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:208:21 |
| | |
| LL | let _ = Enum::A; |
| | ^^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:251:13 |
| | |
| LL | nested::A::fun_1(); |
| | ^^^^^^^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:253:13 |
| | |
| LL | nested::A::A; |
| | ^^^^^^^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:256:13 |
| | |
| LL | nested::A {}; |
| | ^^^^^^^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:276:13 |
| | |
| LL | TestStruct::from_something() |
| | ^^^^^^^^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:291:25 |
| | |
| LL | async fn g() -> S { |
| | ^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:293:13 |
| | |
| LL | S {} |
| | ^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:298:16 |
| | |
| LL | &p[S::A..S::B] |
| | ^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:298:22 |
| | |
| LL | &p[S::A..S::B] |
| | ^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:323:29 |
| | |
| LL | fn foo(value: T) -> Foo<T> { |
| | ^^^^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:325:13 |
| | |
| LL | Foo::<T> { value } |
| | ^^^^^^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:498:13 |
| | |
| LL | A::new::<submod::B>(submod::B {}) |
| | ^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:574:17 |
| | |
| LL | Foo::Bar => unimplemented!(), |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:576:17 |
| | |
| LL | Foo::Baz => unimplemented!(), |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:583:20 |
| | |
| LL | if let Foo::Bar = self { |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:608:17 |
| | |
| LL | Something::Num(n) => *n, |
| | ^^^^^^^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:610:17 |
| | |
| LL | Something::TupleNums(n, _m) => *n, |
| | ^^^^^^^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:612:17 |
| | |
| LL | Something::StructNums { one, two: _ } => *one, |
| | ^^^^^^^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:619:17 |
| | |
| LL | crate::issue8845::Something::Num(n) => *n, |
| | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:621:17 |
| | |
| LL | crate::issue8845::Something::TupleNums(n, _m) => *n, |
| | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:623:17 |
| | |
| LL | crate::issue8845::Something::StructNums { one, two: _ } => *one, |
| | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:640:17 |
| | |
| LL | let Foo(x) = self; |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:646:17 |
| | |
| LL | let crate::issue8845::Foo(x) = self; |
| | ^^^^^^^^^^^^^^^^^^^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:654:17 |
| | |
| LL | let Bar { x, .. } = self; |
| | ^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:660:17 |
| | |
| LL | let crate::issue8845::Bar { x, .. } = self; |
| | ^^^^^^^^^^^^^^^^^^^^^ help: use the applicable keyword: `Self` |
| |
| error: unnecessary structure name repetition |
| --> tests/ui/use_self.rs:700:17 |
| | |
| LL | E::A => {}, |
| | ^ help: use the applicable keyword: `Self` |
| |
| error: aborting due to 42 previous errors |
| |