]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/use_self.stderr
Auto merge of #68717 - petrochenkov:stabexpat, r=varkor
[rust.git] / tests / ui / use_self.stderr
index 627fc3a97cb3b82418d4a04a6680931c081d48dc..b33928597c1455534bd6f8327aec24263f200990 100644 (file)
 error: unnecessary structure name repetition
-  --> $DIR/use_self.rs:23:21
+  --> $DIR/use_self.rs:14:21
    |
-23 |         fn new() -> Foo {
+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:24:13
+  --> $DIR/use_self.rs:15:13
    |
-24 |             Foo {}
+LL |             Foo {}
    |             ^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-  --> $DIR/use_self.rs:26:22
+  --> $DIR/use_self.rs:17:22
    |
-26 |         fn test() -> Foo {
+LL |         fn test() -> Foo {
    |                      ^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-  --> $DIR/use_self.rs:27:13
+  --> $DIR/use_self.rs:18:13
    |
-27 |             Foo::new()
-   |             ^^^^^^^^ help: use the applicable keyword: `Self`
+LL |             Foo::new()
+   |             ^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-  --> $DIR/use_self.rs:32:25
+  --> $DIR/use_self.rs:23:25
    |
-32 |         fn default() -> Foo {
+LL |         fn default() -> Foo {
    |                         ^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-  --> $DIR/use_self.rs:33:13
+  --> $DIR/use_self.rs:24:13
    |
-33 |             Foo::new()
-   |             ^^^^^^^^ help: use the applicable keyword: `Self`
+LL |             Foo::new()
+   |             ^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-  --> $DIR/use_self.rs:96:22
+  --> $DIR/use_self.rs:89:56
    |
-96 |         fn refs(p1: &Bad) -> &Bad {
-   |                      ^^^ help: use the applicable keyword: `Self`
+LL |         fn bad(foos: &[Self]) -> impl Iterator<Item = &Foo> {
+   |                                                        ^^^ help: use the applicable keyword: `Self`
+
+error: unnecessary structure name repetition
+  --> $DIR/use_self.rs:104:13
+   |
+LL |             TS(0)
+   |             ^^ help: use the applicable keyword: `Self`
+
+error: unnecessary structure name repetition
+  --> $DIR/use_self.rs:112:25
+   |
+LL |             fn new() -> Foo {
+   |                         ^^^ help: use the applicable keyword: `Self`
+...
+LL |         use_self_expand!(); // Should lint in local macros
+   |         ------------------- in this macro invocation
+   |
+   = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error: unnecessary structure name repetition
+  --> $DIR/use_self.rs:113:17
+   |
+LL |                 Foo {}
+   |                 ^^^ help: use the applicable keyword: `Self`
+...
+LL |         use_self_expand!(); // Should lint in local macros
+   |         ------------------- in this macro invocation
+   |
+   = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error: unnecessary structure name repetition
+  --> $DIR/use_self.rs:148:21
+   |
+LL |         fn baz() -> Foo {
+   |                     ^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-  --> $DIR/use_self.rs:96:31
+  --> $DIR/use_self.rs:149:13
    |
-96 |         fn refs(p1: &Bad) -> &Bad {
-   |                               ^^^ help: use the applicable keyword: `Self`
+LL |             Foo {}
+   |             ^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-   --> $DIR/use_self.rs:100:37
-    |
-100 |         fn ref_refs<'a>(p1: &'a &'a Bad) -> &'a &'a Bad {
-    |                                     ^^^ help: use the applicable keyword: `Self`
+  --> $DIR/use_self.rs:136:29
+   |
+LL |                 fn bar() -> Bar {
+   |                             ^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-   --> $DIR/use_self.rs:100:53
-    |
-100 |         fn ref_refs<'a>(p1: &'a &'a Bad) -> &'a &'a Bad {
-    |                                                     ^^^ help: use the applicable keyword: `Self`
+  --> $DIR/use_self.rs:137:21
+   |
+LL |                     Bar { foo: Foo {} }
+   |                     ^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-   --> $DIR/use_self.rs:104:30
-    |
-104 |         fn mut_refs(p1: &mut Bad) -> &mut Bad {
-    |                              ^^^ help: use the applicable keyword: `Self`
+  --> $DIR/use_self.rs:166:21
+   |
+LL |             let _ = Enum::B(42);
+   |                     ^^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-   --> $DIR/use_self.rs:104:43
-    |
-104 |         fn mut_refs(p1: &mut Bad) -> &mut Bad {
-    |                                           ^^^ help: use the applicable keyword: `Self`
+  --> $DIR/use_self.rs:167:21
+   |
+LL |             let _ = Enum::C { field: true };
+   |                     ^^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-   --> $DIR/use_self.rs:108:28
-    |
-108 |         fn nested(_p1: Box<Bad>, _p2: (&u8, &Bad)) {
-    |                            ^^^ help: use the applicable keyword: `Self`
+  --> $DIR/use_self.rs:168:21
+   |
+LL |             let _ = Enum::A;
+   |                     ^^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-   --> $DIR/use_self.rs:108:46
-    |
-108 |         fn nested(_p1: Box<Bad>, _p2: (&u8, &Bad)) {
-    |                                              ^^^ help: use the applicable keyword: `Self`
+  --> $DIR/use_self.rs:199:13
+   |
+LL |             nested::A::fun_1();
+   |             ^^^^^^^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-   --> $DIR/use_self.rs:111:20
-    |
-111 |         fn vals(_: Bad) -> Bad {
-    |                    ^^^ help: use the applicable keyword: `Self`
+  --> $DIR/use_self.rs:200:13
+   |
+LL |             nested::A::A;
+   |             ^^^^^^^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-   --> $DIR/use_self.rs:111:28
-    |
-111 |         fn vals(_: Bad) -> Bad {
-    |                            ^^^ help: use the applicable keyword: `Self`
+  --> $DIR/use_self.rs:202:13
+   |
+LL |             nested::A {};
+   |             ^^^^^^^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-   --> $DIR/use_self.rs:112:13
-    |
-112 |             Bad::default()
-    |             ^^^^^^^^^^^^ help: use the applicable keyword: `Self`
+  --> $DIR/use_self.rs:221:13
+   |
+LL |             TestStruct::from_something()
+   |             ^^^^^^^^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-   --> $DIR/use_self.rs:117:23
-    |
-117 |         type Output = Bad;
-    |                       ^^^ help: use the applicable keyword: `Self`
+  --> $DIR/use_self.rs:235:25
+   |
+LL |         async fn g() -> S {
+   |                         ^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-   --> $DIR/use_self.rs:119:27
-    |
-119 |         fn mul(self, rhs: Bad) -> Bad {
-    |                           ^^^ help: use the applicable keyword: `Self`
+  --> $DIR/use_self.rs:236:13
+   |
+LL |             S {}
+   |             ^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-   --> $DIR/use_self.rs:119:35
-    |
-119 |         fn mul(self, rhs: Bad) -> Bad {
-    |                                   ^^^ help: use the applicable keyword: `Self`
+  --> $DIR/use_self.rs:240:16
+   |
+LL |             &p[S::A..S::B]
+   |                ^ help: use the applicable keyword: `Self`
+
+error: unnecessary structure name repetition
+  --> $DIR/use_self.rs:240:22
+   |
+LL |             &p[S::A..S::B]
+   |                      ^ help: use the applicable keyword: `Self`
 
-error: aborting due to 20 previous errors
+error: aborting due to 25 previous errors