mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
166 lines
5.4 KiB
Text
166 lines
5.4 KiB
Text
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:11:21
|
|
|
|
|
LL | fn new() -> Foo {
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
= note: `-D clippy::use-self` implied by `-D warnings`
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:12:13
|
|
|
|
|
LL | Foo {}
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:14:22
|
|
|
|
|
LL | fn test() -> Foo {
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:15:13
|
|
|
|
|
LL | Foo::new()
|
|
| ^^^^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:20:25
|
|
|
|
|
LL | fn default() -> Foo {
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:21:13
|
|
|
|
|
LL | Foo::new()
|
|
| ^^^^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:86:22
|
|
|
|
|
LL | fn refs(p1: &Bad) -> &Bad {
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:86:31
|
|
|
|
|
LL | fn refs(p1: &Bad) -> &Bad {
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:90:37
|
|
|
|
|
LL | fn ref_refs<'a>(p1: &'a &'a Bad) -> &'a &'a Bad {
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:90:53
|
|
|
|
|
LL | fn ref_refs<'a>(p1: &'a &'a Bad) -> &'a &'a Bad {
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:94:30
|
|
|
|
|
LL | fn mut_refs(p1: &mut Bad) -> &mut Bad {
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:94:43
|
|
|
|
|
LL | fn mut_refs(p1: &mut Bad) -> &mut Bad {
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:98:28
|
|
|
|
|
LL | fn nested(_p1: Box<Bad>, _p2: (&u8, &Bad)) {}
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:98:46
|
|
|
|
|
LL | fn nested(_p1: Box<Bad>, _p2: (&u8, &Bad)) {}
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:100:20
|
|
|
|
|
LL | fn vals(_: Bad) -> Bad {
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:100:28
|
|
|
|
|
LL | fn vals(_: Bad) -> Bad {
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:101:13
|
|
|
|
|
LL | Bad::default()
|
|
| ^^^^^^^^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:106:23
|
|
|
|
|
LL | type Output = Bad;
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:108:27
|
|
|
|
|
LL | fn mul(self, rhs: Bad) -> Bad {
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:108:35
|
|
|
|
|
LL | fn mul(self, rhs: Bad) -> Bad {
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:200:56
|
|
|
|
|
LL | fn bad(foos: &[Self]) -> impl Iterator<Item = &Foo> {
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:215:13
|
|
|
|
|
LL | TS(0)
|
|
| ^^ help: use the applicable keyword: `Self`
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:223:25
|
|
|
|
|
LL | fn new() -> Foo {
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
...
|
|
LL | use_self_expand!(); // Should lint in local macros
|
|
| ------------------- in this macro invocation
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:224:17
|
|
|
|
|
LL | Foo {}
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
...
|
|
LL | use_self_expand!(); // Should lint in local macros
|
|
| ------------------- in this macro invocation
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:246:29
|
|
|
|
|
LL | fn bar() -> Bar {
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
error: unnecessary structure name repetition
|
|
--> $DIR/use_self.rs:247:21
|
|
|
|
|
LL | Bar { foo: Foo {} }
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
error: aborting due to 26 previous errors
|
|
|