]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/use_self.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / use_self.stderr
index 0904db2e9421b9a32faecea3f69415f584148caf..d52fce76de598f54a60561299f2ad20463a1b073 100644 (file)
@@ -1,7 +1,7 @@
 error: unnecessary structure name repetition
   --> $DIR/use_self.rs:20:21
    |
-20 |         fn new() -> Foo {
+LL |         fn new() -> Foo {
    |                     ^^^ help: use the applicable keyword: `Self`
    |
    = note: `-D clippy::use-self` implied by `-D warnings`
@@ -9,122 +9,128 @@ error: unnecessary structure name repetition
 error: unnecessary structure name repetition
   --> $DIR/use_self.rs:21:13
    |
-21 |             Foo {}
+LL |             Foo {}
    |             ^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
   --> $DIR/use_self.rs:23:22
    |
-23 |         fn test() -> Foo {
+LL |         fn test() -> Foo {
    |                      ^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
   --> $DIR/use_self.rs:24:13
    |
-24 |             Foo::new()
+LL |             Foo::new()
    |             ^^^^^^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
   --> $DIR/use_self.rs:29:25
    |
-29 |         fn default() -> Foo {
+LL |         fn default() -> Foo {
    |                         ^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
   --> $DIR/use_self.rs:30:13
    |
-30 |             Foo::new()
+LL |             Foo::new()
    |             ^^^^^^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-  --> $DIR/use_self.rs:96:22
+  --> $DIR/use_self.rs:95:22
    |
-96 |         fn refs(p1: &Bad) -> &Bad {
+LL |         fn refs(p1: &Bad) -> &Bad {
    |                      ^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-  --> $DIR/use_self.rs:96:31
+  --> $DIR/use_self.rs:95:31
    |
-96 |         fn refs(p1: &Bad) -> &Bad {
+LL |         fn refs(p1: &Bad) -> &Bad {
    |                               ^^^ 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:99: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:99: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:100:53
-    |
-100 |         fn ref_refs<'a>(p1: &'a &'a Bad) -> &'a &'a Bad {
-    |                                                     ^^^ help: use the applicable keyword: `Self`
+  --> $DIR/use_self.rs:103: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:104:30
-    |
-104 |         fn mut_refs(p1: &mut Bad) -> &mut Bad {
-    |                              ^^^ help: use the applicable keyword: `Self`
+  --> $DIR/use_self.rs:103: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:104:43
-    |
-104 |         fn mut_refs(p1: &mut Bad) -> &mut Bad {
-    |                                           ^^^ help: use the applicable keyword: `Self`
+  --> $DIR/use_self.rs:107: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:108:28
-    |
-108 |         fn nested(_p1: Box<Bad>, _p2: (&u8, &Bad)) {}
-    |                            ^^^ help: use the applicable keyword: `Self`
+  --> $DIR/use_self.rs:107: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:108:46
-    |
-108 |         fn nested(_p1: Box<Bad>, _p2: (&u8, &Bad)) {}
-    |                                              ^^^ help: use the applicable keyword: `Self`
+  --> $DIR/use_self.rs:109:20
+   |
+LL |         fn vals(_: Bad) -> Bad {
+   |                    ^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-   --> $DIR/use_self.rs:110:20
-    |
-110 |         fn vals(_: Bad) -> Bad {
-    |                    ^^^ help: use the applicable keyword: `Self`
+  --> $DIR/use_self.rs:109:28
+   |
+LL |         fn vals(_: Bad) -> Bad {
+   |                            ^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-   --> $DIR/use_self.rs:110:28
-    |
-110 |         fn vals(_: Bad) -> Bad {
-    |                            ^^^ help: use the applicable keyword: `Self`
+  --> $DIR/use_self.rs:110:13
+   |
+LL |             Bad::default()
+   |             ^^^^^^^^^^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-   --> $DIR/use_self.rs:111:13
-    |
-111 |             Bad::default()
-    |             ^^^^^^^^^^^^ help: use the applicable keyword: `Self`
+  --> $DIR/use_self.rs:115:23
+   |
+LL |         type Output = Bad;
+   |                       ^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-   --> $DIR/use_self.rs:116:23
-    |
-116 |         type Output = Bad;
-    |                       ^^^ help: use the applicable keyword: `Self`
+  --> $DIR/use_self.rs:117:27
+   |
+LL |         fn mul(self, rhs: Bad) -> Bad {
+   |                           ^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-   --> $DIR/use_self.rs:118:27
-    |
-118 |         fn mul(self, rhs: Bad) -> Bad {
-    |                           ^^^ help: use the applicable keyword: `Self`
+  --> $DIR/use_self.rs:117:35
+   |
+LL |         fn mul(self, rhs: Bad) -> Bad {
+   |                                   ^^^ help: use the applicable keyword: `Self`
 
 error: unnecessary structure name repetition
-   --> $DIR/use_self.rs:118:35
-    |
-118 |         fn mul(self, rhs: Bad) -> Bad {
-    |                                   ^^^ help: use the applicable keyword: `Self`
+  --> $DIR/use_self.rs:209: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:210:56
-    |
-210 |         fn bad(foos: &[Self]) -> impl Iterator<Item = &Foo> {
-    |                                                        ^^^ help: use the applicable keyword: `Self`
+  --> $DIR/use_self.rs:224:13
+   |
+LL |             TS(0)
+   |             ^^ help: use the applicable keyword: `Self`
 
-error: aborting due to 21 previous errors
+error: aborting due to 22 previous errors