2017-08-18 17:42:26 +00:00
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:23:21
|
2017-07-28 11:28:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn new() -> Foo {
|
2017-08-18 17:42:26 +00:00
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
2017-07-28 11:28:07 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::use-self` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::use_self)]`
|
2017-07-28 11:28:07 +00:00
|
|
|
|
2017-08-18 17:42:26 +00:00
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:24:13
|
2017-07-28 11:28:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Foo {}
|
2017-08-18 17:42:26 +00:00
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
2017-07-28 11:28:07 +00:00
|
|
|
|
2017-08-18 17:42:26 +00:00
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:26:22
|
2017-07-28 11:28:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn test() -> Foo {
|
2017-08-18 17:42:26 +00:00
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
2017-07-28 11:28:07 +00:00
|
|
|
|
2017-08-18 17:42:26 +00:00
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:27:13
|
2017-07-28 11:28:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Foo::new()
|
2019-01-20 13:50:26 +00:00
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
2017-07-28 11:28:07 +00:00
|
|
|
|
2017-08-18 17:42:26 +00:00
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:32:25
|
2017-07-28 11:28:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn default() -> Foo {
|
2017-08-18 17:42:26 +00:00
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
2017-07-28 11:28:07 +00:00
|
|
|
|
2017-08-18 17:42:26 +00:00
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:33:13
|
2017-07-28 11:28:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Foo::new()
|
2019-01-20 13:50:26 +00:00
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
2017-07-28 11:28:07 +00:00
|
|
|
|
2018-07-14 10:18:50 +00:00
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:74:28
|
2024-03-21 21:20:40 +00:00
|
|
|
|
|
|
|
|
LL | fn clone(&self) -> Foo<'a> {
|
|
|
|
| ^^^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:107:24
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
2021-02-25 10:25:22 +00:00
|
|
|
LL | fn bad(foos: &[Foo]) -> impl Iterator<Item = &Foo> {
|
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
2018-10-25 03:28:54 +00:00
|
|
|
|
2018-12-27 16:27:42 +00:00
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:107:55
|
2021-02-25 10:25:22 +00:00
|
|
|
|
|
|
|
|
LL | fn bad(foos: &[Foo]) -> impl Iterator<Item = &Foo> {
|
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:122:13
|
2018-12-28 19:49:19 +00:00
|
|
|
|
|
|
|
|
LL | TS(0)
|
|
|
|
| ^^ help: use the applicable keyword: `Self`
|
2018-12-27 16:27:42 +00:00
|
|
|
|
2019-01-04 10:31:28 +00:00
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:157:29
|
2020-02-07 03:34:06 +00:00
|
|
|
|
|
2021-02-25 10:25:22 +00:00
|
|
|
LL | fn bar() -> Bar {
|
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
2019-01-04 10:31:28 +00:00
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:158:21
|
2020-02-07 03:34:06 +00:00
|
|
|
|
|
2021-02-25 10:25:22 +00:00
|
|
|
LL | Bar { foo: Foo {} }
|
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
2019-01-04 10:31:28 +00:00
|
|
|
|
2019-03-11 14:24:49 +00:00
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:169:21
|
2019-03-11 14:24:49 +00:00
|
|
|
|
|
|
|
|
LL | fn baz() -> Foo {
|
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:170:13
|
2019-03-11 14:24:49 +00:00
|
|
|
|
|
|
|
|
LL | Foo {}
|
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
2019-01-07 13:11:53 +00:00
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:187:21
|
2019-07-31 00:24:28 +00:00
|
|
|
|
|
|
|
|
LL | let _ = Enum::B(42);
|
|
|
|
| ^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:188:21
|
2019-07-31 00:24:28 +00:00
|
|
|
|
|
|
|
|
LL | let _ = Enum::C { field: true };
|
|
|
|
| ^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:189:21
|
2019-07-31 00:24:28 +00:00
|
|
|
|
|
|
|
|
LL | let _ = Enum::A;
|
|
|
|
| ^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:231:13
|
2019-01-21 12:06:32 +00:00
|
|
|
|
|
|
|
|
LL | nested::A::fun_1();
|
|
|
|
| ^^^^^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:232:13
|
2019-01-21 12:06:32 +00:00
|
|
|
|
|
|
|
|
LL | nested::A::A;
|
|
|
|
| ^^^^^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:234:13
|
2019-01-21 12:06:32 +00:00
|
|
|
|
|
|
|
|
LL | nested::A {};
|
|
|
|
| ^^^^^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
2019-09-12 06:47:11 +00:00
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:253:13
|
2019-09-12 06:47:11 +00:00
|
|
|
|
|
|
|
|
LL | TestStruct::from_something()
|
|
|
|
| ^^^^^^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
2019-11-06 05:13:43 +00:00
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:267:25
|
2019-11-07 03:59:13 +00:00
|
|
|
|
|
|
|
|
LL | async fn g() -> S {
|
|
|
|
| ^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:268:13
|
2019-11-07 03:59:13 +00:00
|
|
|
|
|
|
|
|
LL | S {}
|
|
|
|
| ^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:272:16
|
2019-11-06 05:13:43 +00:00
|
|
|
|
|
|
|
|
LL | &p[S::A..S::B]
|
|
|
|
| ^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:272:22
|
2019-11-06 05:13:43 +00:00
|
|
|
|
|
|
|
|
LL | &p[S::A..S::B]
|
|
|
|
| ^ help: use the applicable keyword: `Self`
|
|
|
|
|
2021-02-25 10:25:22 +00:00
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:295:29
|
2021-02-25 10:25:22 +00:00
|
|
|
|
|
|
|
|
LL | fn foo(value: T) -> Foo<T> {
|
|
|
|
| ^^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:296:13
|
2021-02-25 10:25:22 +00:00
|
|
|
|
|
2021-07-01 16:17:38 +00:00
|
|
|
LL | Foo::<T> { value }
|
|
|
|
| ^^^^^^^^ help: use the applicable keyword: `Self`
|
2021-02-25 10:25:22 +00:00
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:468:13
|
2021-02-25 10:25:22 +00:00
|
|
|
|
|
|
|
|
LL | A::new::<submod::B>(submod::B {})
|
|
|
|
| ^ help: use the applicable keyword: `Self`
|
|
|
|
|
2021-05-20 10:30:31 +00:00
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:505:13
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
|
LL | S2::new()
|
|
|
|
| ^^ help: use the applicable keyword: `Self`
|
|
|
|
|
2022-03-14 11:02:53 +00:00
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:542:17
|
2022-03-14 11:02:53 +00:00
|
|
|
|
|
|
|
|
LL | Foo::Bar => unimplemented!(),
|
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:543:17
|
2022-03-14 11:02:53 +00:00
|
|
|
|
|
|
|
|
LL | Foo::Baz => unimplemented!(),
|
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:549:20
|
2022-03-14 11:02:53 +00:00
|
|
|
|
|
|
|
|
LL | if let Foo::Bar = self {
|
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
2022-06-04 11:34:07 +00:00
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:573:17
|
2022-06-04 11:34:07 +00:00
|
|
|
|
|
|
|
|
LL | Something::Num(n) => *n,
|
|
|
|
| ^^^^^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:574:17
|
2022-06-04 11:34:07 +00:00
|
|
|
|
|
|
|
|
LL | Something::TupleNums(n, _m) => *n,
|
|
|
|
| ^^^^^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:575:17
|
2022-06-04 11:34:07 +00:00
|
|
|
|
|
|
|
|
LL | Something::StructNums { one, two: _ } => *one,
|
|
|
|
| ^^^^^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:581:17
|
2022-06-04 11:34:07 +00:00
|
|
|
|
|
|
|
|
LL | crate::issue8845::Something::Num(n) => *n,
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:582:17
|
2022-06-04 11:34:07 +00:00
|
|
|
|
|
|
|
|
LL | crate::issue8845::Something::TupleNums(n, _m) => *n,
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:583:17
|
2022-06-04 11:34:07 +00:00
|
|
|
|
|
|
|
|
LL | crate::issue8845::Something::StructNums { one, two: _ } => *one,
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:599:17
|
2022-06-04 11:34:07 +00:00
|
|
|
|
|
|
|
|
LL | let Foo(x) = self;
|
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:604:17
|
2022-06-04 11:34:07 +00:00
|
|
|
|
|
|
|
|
LL | let crate::issue8845::Foo(x) = self;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:611:17
|
2022-06-04 11:34:07 +00:00
|
|
|
|
|
|
|
|
LL | let Bar { x, .. } = self;
|
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:616:17
|
2022-06-04 11:34:07 +00:00
|
|
|
|
|
|
|
|
LL | let crate::issue8845::Bar { x, .. } = self;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
2022-10-23 13:18:45 +00:00
|
|
|
error: unnecessary structure name repetition
|
2024-04-04 17:26:44 +00:00
|
|
|
--> tests/ui/use_self.rs:655:17
|
2022-10-23 13:18:45 +00:00
|
|
|
|
|
|
|
|
LL | E::A => {},
|
|
|
|
| ^ help: use the applicable keyword: `Self`
|
|
|
|
|
2024-03-21 21:20:40 +00:00
|
|
|
error: aborting due to 43 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|