2017-08-18 19:42:26 +02:00
|
|
|
error: unnecessary structure name repetition
|
2019-11-07 05:59:13 +02:00
|
|
|
--> $DIR/use_self.rs:14:21
|
2017-07-28 13:28:07 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | fn new() -> Foo {
|
2017-08-18 19:42:26 +02:00
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
2017-07-28 13:28:07 +02:00
|
|
|
|
|
2018-08-01 16:30:44 +02:00
|
|
|
= note: `-D clippy::use-self` implied by `-D warnings`
|
2017-07-28 13:28:07 +02:00
|
|
|
|
2017-08-18 19:42:26 +02:00
|
|
|
error: unnecessary structure name repetition
|
2019-11-07 05:59:13 +02:00
|
|
|
--> $DIR/use_self.rs:15:13
|
2017-07-28 13:28:07 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | Foo {}
|
2017-08-18 19:42:26 +02:00
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
2017-07-28 13:28:07 +02:00
|
|
|
|
2017-08-18 19:42:26 +02:00
|
|
|
error: unnecessary structure name repetition
|
2019-11-07 05:59:13 +02:00
|
|
|
--> $DIR/use_self.rs:17:22
|
2017-07-28 13:28:07 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | fn test() -> Foo {
|
2017-08-18 19:42:26 +02:00
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
2017-07-28 13:28:07 +02:00
|
|
|
|
2017-08-18 19:42:26 +02:00
|
|
|
error: unnecessary structure name repetition
|
2019-11-07 05:59:13 +02:00
|
|
|
--> $DIR/use_self.rs:18:13
|
2017-07-28 13:28:07 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | Foo::new()
|
2019-01-20 14:50:26 +01:00
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
2017-07-28 13:28:07 +02:00
|
|
|
|
2017-08-18 19:42:26 +02:00
|
|
|
error: unnecessary structure name repetition
|
2019-11-07 05:59:13 +02:00
|
|
|
--> $DIR/use_self.rs:23:25
|
2017-07-28 13:28:07 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | fn default() -> Foo {
|
2017-08-18 19:42:26 +02:00
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
2017-07-28 13:28:07 +02:00
|
|
|
|
2017-08-18 19:42:26 +02:00
|
|
|
error: unnecessary structure name repetition
|
2019-11-07 05:59:13 +02:00
|
|
|
--> $DIR/use_self.rs:24:13
|
2017-07-28 13:28:07 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | Foo::new()
|
2019-01-20 14:50:26 +01:00
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
2017-07-28 13:28:07 +02:00
|
|
|
|
2018-07-14 12:18:50 +02:00
|
|
|
error: unnecessary structure name repetition
|
2020-01-10 08:56:16 +09:00
|
|
|
--> $DIR/use_self.rs:89:56
|
2018-12-27 16:57:55 +01:00
|
|
|
|
|
|
|
|
LL | fn bad(foos: &[Self]) -> impl Iterator<Item = &Foo> {
|
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
2018-10-24 23:28:54 -04:00
|
|
|
|
2018-12-27 17:27:42 +01:00
|
|
|
error: unnecessary structure name repetition
|
2020-01-10 08:56:16 +09:00
|
|
|
--> $DIR/use_self.rs:104:13
|
2018-12-28 20:49:19 +01:00
|
|
|
|
|
|
|
|
LL | TS(0)
|
|
|
|
| ^^ help: use the applicable keyword: `Self`
|
2018-12-27 17:27:42 +01:00
|
|
|
|
2019-01-04 11:31:28 +01:00
|
|
|
error: unnecessary structure name repetition
|
2020-01-10 08:56:16 +09:00
|
|
|
--> $DIR/use_self.rs:112:25
|
2019-01-04 11:31:28 +01:00
|
|
|
|
|
|
|
|
LL | fn new() -> Foo {
|
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
...
|
|
|
|
LL | use_self_expand!(); // Should lint in local macros
|
|
|
|
| ------------------- in this macro invocation
|
2020-02-07 04:34:06 +01:00
|
|
|
|
|
|
|
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
2019-01-04 11:31:28 +01:00
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2020-01-10 08:56:16 +09:00
|
|
|
--> $DIR/use_self.rs:113:17
|
2019-01-04 11:31:28 +01:00
|
|
|
|
|
|
|
|
LL | Foo {}
|
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
...
|
|
|
|
LL | use_self_expand!(); // Should lint in local macros
|
|
|
|
| ------------------- in this macro invocation
|
2020-02-07 04:34:06 +01:00
|
|
|
|
|
|
|
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
2019-01-04 11:31:28 +01:00
|
|
|
|
2019-03-11 23:24:49 +09:00
|
|
|
error: unnecessary structure name repetition
|
2020-01-10 08:56:16 +09:00
|
|
|
--> $DIR/use_self.rs:148:21
|
2019-03-11 23:24:49 +09:00
|
|
|
|
|
|
|
|
LL | fn baz() -> Foo {
|
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2020-01-10 08:56:16 +09:00
|
|
|
--> $DIR/use_self.rs:149:13
|
2019-03-11 23:24:49 +09:00
|
|
|
|
|
|
|
|
LL | Foo {}
|
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
2019-01-07 14:11:53 +01:00
|
|
|
error: unnecessary structure name repetition
|
2020-01-10 08:56:16 +09:00
|
|
|
--> $DIR/use_self.rs:136:29
|
2019-01-07 14:11:53 +01:00
|
|
|
|
|
|
|
|
LL | fn bar() -> Bar {
|
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2020-01-10 08:56:16 +09:00
|
|
|
--> $DIR/use_self.rs:137:21
|
2019-01-07 14:11:53 +01:00
|
|
|
|
|
2019-01-07 14:38:01 +01:00
|
|
|
LL | Bar { foo: Foo {} }
|
2019-01-07 14:11:53 +01:00
|
|
|
| ^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
2019-01-21 13:06:32 +01:00
|
|
|
error: unnecessary structure name repetition
|
2020-01-10 08:56:16 +09:00
|
|
|
--> $DIR/use_self.rs:166: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
|
2020-01-10 08:56:16 +09:00
|
|
|
--> $DIR/use_self.rs:167: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
|
2020-01-10 08:56:16 +09:00
|
|
|
--> $DIR/use_self.rs:168:21
|
2019-07-31 00:24:28 +00:00
|
|
|
|
|
|
|
|
LL | let _ = Enum::A;
|
|
|
|
| ^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2020-01-10 08:56:16 +09:00
|
|
|
--> $DIR/use_self.rs:199:13
|
2019-01-21 13:06:32 +01:00
|
|
|
|
|
|
|
|
LL | nested::A::fun_1();
|
|
|
|
| ^^^^^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2020-01-10 08:56:16 +09:00
|
|
|
--> $DIR/use_self.rs:200:13
|
2019-01-21 13:06:32 +01:00
|
|
|
|
|
|
|
|
LL | nested::A::A;
|
|
|
|
| ^^^^^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2020-01-10 08:56:16 +09:00
|
|
|
--> $DIR/use_self.rs:202:13
|
2019-01-21 13:06:32 +01:00
|
|
|
|
|
|
|
|
LL | nested::A {};
|
|
|
|
| ^^^^^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
2019-09-12 08:47:11 +02:00
|
|
|
error: unnecessary structure name repetition
|
2020-01-10 08:56:16 +09:00
|
|
|
--> $DIR/use_self.rs:221:13
|
2019-09-12 08:47:11 +02:00
|
|
|
|
|
|
|
|
LL | TestStruct::from_something()
|
|
|
|
| ^^^^^^^^^^ help: use the applicable keyword: `Self`
|
|
|
|
|
2019-11-06 07:13:43 +02:00
|
|
|
error: unnecessary structure name repetition
|
2020-01-10 08:56:16 +09:00
|
|
|
--> $DIR/use_self.rs:235:25
|
2019-11-07 05:59:13 +02:00
|
|
|
|
|
|
|
|
LL | async fn g() -> S {
|
|
|
|
| ^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2020-01-10 08:56:16 +09:00
|
|
|
--> $DIR/use_self.rs:236:13
|
2019-11-07 05:59:13 +02:00
|
|
|
|
|
|
|
|
LL | S {}
|
|
|
|
| ^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2020-01-10 08:56:16 +09:00
|
|
|
--> $DIR/use_self.rs:240:16
|
2019-11-06 07:13:43 +02:00
|
|
|
|
|
|
|
|
LL | &p[S::A..S::B]
|
|
|
|
| ^ help: use the applicable keyword: `Self`
|
|
|
|
|
|
|
|
error: unnecessary structure name repetition
|
2020-01-10 08:56:16 +09:00
|
|
|
--> $DIR/use_self.rs:240:22
|
2019-11-06 07:13:43 +02:00
|
|
|
|
|
|
|
|
LL | &p[S::A..S::B]
|
|
|
|
| ^ help: use the applicable keyword: `Self`
|
|
|
|
|
2020-01-10 08:56:16 +09:00
|
|
|
error: aborting due to 25 previous errors
|
2018-01-16 17:06:27 +01:00
|
|
|
|