]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/new_ret_no_self.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / new_ret_no_self.stderr
index ad26438d4efe73e4324f9b748004d0609d4d4d12..dd5a24bcbe7aed4c1ba4b792942ecac8f8cf9ea2 100644 (file)
@@ -1,9 +1,9 @@
 error: methods called `new` usually return `Self`
   --> $DIR/new_ret_no_self.rs:49:5
    |
-49 | /     pub fn new(_: String) -> impl R<Item = u32> {
-50 | |         S3
-51 | |     }
+LL | /     pub fn new(_: String) -> impl R<Item = u32> {
+LL | |         S3
+LL | |     }
    | |_____^
    |
    = note: `-D clippy::new-ret-no-self` implied by `-D warnings`
@@ -11,18 +11,42 @@ error: methods called `new` usually return `Self`
 error: methods called `new` usually return `Self`
   --> $DIR/new_ret_no_self.rs:81:5
    |
-81 | /     pub fn new() -> u32 {
-82 | |         unimplemented!();
-83 | |     }
+LL | /     pub fn new() -> u32 {
+LL | |         unimplemented!();
+LL | |     }
    | |_____^
 
 error: methods called `new` usually return `Self`
   --> $DIR/new_ret_no_self.rs:90:5
    |
-90 | /     pub fn new(_: String) -> u32 {
-91 | |         unimplemented!();
-92 | |     }
+LL | /     pub fn new(_: String) -> u32 {
+LL | |         unimplemented!();
+LL | |     }
    | |_____^
 
-error: aborting due to 3 previous errors
+error: methods called `new` usually return `Self`
+  --> $DIR/new_ret_no_self.rs:126:5
+   |
+LL | /     pub fn new() -> (u32, u32) {
+LL | |         unimplemented!();
+LL | |     }
+   | |_____^
+
+error: methods called `new` usually return `Self`
+  --> $DIR/new_ret_no_self.rs:153:5
+   |
+LL | /     pub fn new() -> *mut V {
+LL | |         unimplemented!();
+LL | |     }
+   | |_____^
+
+error: methods called `new` usually return `Self`
+  --> $DIR/new_ret_no_self.rs:171:5
+   |
+LL | /     pub fn new() -> Option<u32> {
+LL | |         unimplemented!();
+LL | |     }
+   | |_____^
+
+error: aborting due to 6 previous errors