2018-10-03 05:55:31 -05:00
|
|
|
error: methods called `new` usually return `Self`
|
2018-10-13 08:33:46 -05:00
|
|
|
--> $DIR/new_ret_no_self.rs:49:5
|
2018-10-03 05:55:31 -05:00
|
|
|
|
|
2018-10-13 08:33:46 -05:00
|
|
|
49 | / pub fn new(_: String) -> impl R<Item = u32> {
|
|
|
|
50 | | S3
|
|
|
|
51 | | }
|
2018-10-03 05:55:31 -05:00
|
|
|
| |_____^
|
2018-10-03 06:59:14 -05:00
|
|
|
|
|
|
|
|
= note: `-D clippy::new-ret-no-self` implied by `-D warnings`
|
2018-10-03 05:55:31 -05:00
|
|
|
|
|
|
|
error: methods called `new` usually return `Self`
|
2018-10-13 08:33:46 -05:00
|
|
|
--> $DIR/new_ret_no_self.rs:81:5
|
2018-10-03 05:55:31 -05:00
|
|
|
|
|
2018-10-13 08:33:46 -05:00
|
|
|
81 | / pub fn new() -> u32 {
|
|
|
|
82 | | unimplemented!();
|
|
|
|
83 | | }
|
2018-10-03 05:55:31 -05:00
|
|
|
| |_____^
|
|
|
|
|
2018-10-04 21:01:04 -05:00
|
|
|
error: methods called `new` usually return `Self`
|
2018-10-13 08:33:46 -05:00
|
|
|
--> $DIR/new_ret_no_self.rs:90:5
|
2018-10-04 21:01:04 -05:00
|
|
|
|
|
2018-10-13 08:33:46 -05:00
|
|
|
90 | / pub fn new(_: String) -> u32 {
|
|
|
|
91 | | unimplemented!();
|
|
|
|
92 | | }
|
2018-10-04 21:01:04 -05:00
|
|
|
| |_____^
|
|
|
|
|
2018-10-19 06:55:06 -05:00
|
|
|
error: methods called `new` usually return `Self`
|
|
|
|
--> $DIR/new_ret_no_self.rs:120:5
|
|
|
|
|
|
|
|
|
120 | pub fn new() -> (u32, u32) { unimplemented!(); }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-10-19 07:20:33 -05:00
|
|
|
error: methods called `new` usually return `Self`
|
|
|
|
--> $DIR/new_ret_no_self.rs:141:5
|
|
|
|
|
|
|
|
|
141 | pub fn new() -> *mut V { unimplemented!(); }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-10-20 08:29:17 -05:00
|
|
|
error: methods called `new` usually return `Self`
|
|
|
|
--> $DIR/new_ret_no_self.rs:155:5
|
|
|
|
|
|
|
|
|
155 | pub fn new() -> Option<u32> { unimplemented!(); }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
2018-10-03 05:55:31 -05:00
|
|
|
|