]> git.lizzy.rs Git - rust.git/blob - tests/ui/new_ret_no_self.stderr
Merge branch 'master' into rustfmt_tests
[rust.git] / tests / ui / new_ret_no_self.stderr
1 error: methods called `new` usually return `Self`
2   --> $DIR/new_ret_no_self.rs:49:5
3    |
4 49 | /     pub fn new(_: String) -> impl R<Item = u32> {
5 50 | |         S3
6 51 | |     }
7    | |_____^
8    |
9    = note: `-D clippy::new-ret-no-self` implied by `-D warnings`
10
11 error: methods called `new` usually return `Self`
12   --> $DIR/new_ret_no_self.rs:81:5
13    |
14 81 | /     pub fn new() -> u32 {
15 82 | |         unimplemented!();
16 83 | |     }
17    | |_____^
18
19 error: methods called `new` usually return `Self`
20   --> $DIR/new_ret_no_self.rs:90:5
21    |
22 90 | /     pub fn new(_: String) -> u32 {
23 91 | |         unimplemented!();
24 92 | |     }
25    | |_____^
26
27 error: methods called `new` usually return `Self`
28    --> $DIR/new_ret_no_self.rs:126:5
29     |
30 126 | /     pub fn new() -> (u32, u32) {
31 127 | |         unimplemented!();
32 128 | |     }
33     | |_____^
34
35 error: methods called `new` usually return `Self`
36    --> $DIR/new_ret_no_self.rs:153:5
37     |
38 153 | /     pub fn new() -> *mut V {
39 154 | |         unimplemented!();
40 155 | |     }
41     | |_____^
42
43 error: methods called `new` usually return `Self`
44    --> $DIR/new_ret_no_self.rs:171:5
45     |
46 171 | /     pub fn new() -> Option<u32> {
47 172 | |         unimplemented!();
48 173 | |     }
49     | |_____^
50
51 error: aborting due to 6 previous errors
52