2017-08-18 17:42:26 +00:00
|
|
|
error: unnecessary structure name repetition
|
2021-02-25 10:25:22 +00:00
|
|
|
--> $DIR/use_self.rs:18: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`
|
2017-07-28 11:28:07 +00:00
|
|
|
|
2017-08-18 17:42:26 +00:00
|
|
|
error: unnecessary structure name repetition
|
2021-02-25 10:25:22 +00:00
|
|
|
--> $DIR/use_self.rs:19: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
|
2021-02-25 10:25:22 +00:00
|
|
|
--> $DIR/use_self.rs:21: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
|
2021-02-25 10:25:22 +00:00
|
|
|
--> $DIR/use_self.rs:22: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
|
2021-02-25 10:25:22 +00:00
|
|
|
--> $DIR/use_self.rs:27: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
|
2021-02-25 10:25:22 +00:00
|
|
|
--> $DIR/use_self.rs:28: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
|
2021-02-25 10:25:22 +00:00
|
|
|
--> $DIR/use_self.rs:93: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
|
2021-02-25 10:25:22 +00:00
|
|
|
--> $DIR/use_self.rs:93:55
|
|
|
|
|
|
|
|
|
LL | fn bad(foos: &[Foo]) -> impl Iterator<Item = &Foo> {
|
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
|
|
|
--> $DIR/use_self.rs:108: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
|
2021-02-25 10:25:22 +00:00
|
|
|
--> $DIR/use_self.rs:143: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
|
2021-02-25 10:25:22 +00:00
|
|
|
--> $DIR/use_self.rs:144: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
|
2021-02-25 10:25:22 +00:00
|
|
|
--> $DIR/use_self.rs:155:21
|
2019-03-11 14:24:49 +00:00
|
|
|
|
|
|
|
|
LL | fn baz() -> Foo {
|
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2021-02-25 10:25:22 +00:00
|
|
|
--> $DIR/use_self.rs:156: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
|
2021-02-25 10:25:22 +00:00
|
|
|
--> $DIR/use_self.rs:173: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
|
2021-02-25 10:25:22 +00:00
|
|
|
--> $DIR/use_self.rs:174: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
|
2021-02-25 10:25:22 +00:00
|
|
|
--> $DIR/use_self.rs:175:21
|
2019-07-31 00:24:28 +00:00
|
|
|
|
|
|
|
|
LL | let _ = Enum::A;
|
|
|
|
| ^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2021-02-25 10:25:22 +00:00
|
|
|
--> $DIR/use_self.rs:217: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
|
2021-02-25 10:25:22 +00:00
|
|
|
--> $DIR/use_self.rs:218:13
|
2019-01-21 12:06:32 +00:00
|
|
|
|
|
|
|
|
LL | nested::A::A;
|
|
|
|
| ^^^^^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2021-02-25 10:25:22 +00:00
|
|
|
--> $DIR/use_self.rs:220: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
|
2021-02-25 10:25:22 +00:00
|
|
|
--> $DIR/use_self.rs:239: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
|
2021-02-25 10:25:22 +00:00
|
|
|
--> $DIR/use_self.rs:253: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
|
2021-02-25 10:25:22 +00:00
|
|
|
--> $DIR/use_self.rs:254:13
|
2019-11-07 03:59:13 +00:00
|
|
|
|
|
|
|
|
LL | S {}
|
|
|
|
| ^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2021-02-25 10:25:22 +00:00
|
|
|
--> $DIR/use_self.rs:258: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
|
2021-02-25 10:25:22 +00:00
|
|
|
--> $DIR/use_self.rs:258: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
|
|
|
|
--> $DIR/use_self.rs:281:29
|
|
|
|
|
|
|
|
|
LL | fn foo(value: T) -> Foo<T> {
|
|
|
|
| ^^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
|
|
|
--> $DIR/use_self.rs:282:13
|
|
|
|
|
|
|
|
|
LL | Foo { value }
|
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
|
|
|
--> $DIR/use_self.rs:319:21
|
|
|
|
|
|
|
|
|
LL | type From = T::From;
|
|
|
|
| ^^^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
|
|
|
--> $DIR/use_self.rs:320:19
|
|
|
|
|
|
|
|
|
LL | type To = T::To;
|
|
|
|
| ^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2021-03-12 14:30:50 +00:00
|
|
|
--> $DIR/use_self.rs:453:13
|
2021-02-25 10:25:22 +00:00
|
|
|
|
|
|
|
|
LL | A::new::<submod::B>(submod::B {})
|
|
|
|
| ^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: aborting due to 29 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|