2018-10-03 10:55:31 +00:00
|
|
|
error: methods called `new` usually return `Self`
|
2018-10-13 13:33:46 +00:00
|
|
|
--> $DIR/new_ret_no_self.rs:49:5
|
2018-10-03 10:55:31 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / pub fn new(_: String) -> impl R<Item = u32> {
|
|
|
|
LL | | S3
|
|
|
|
LL | | }
|
2018-10-03 10:55:31 +00:00
|
|
|
| |_____^
|
2018-10-03 11:59:14 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::new-ret-no-self` implied by `-D warnings`
|
2018-10-03 10:55:31 +00:00
|
|
|
|
|
|
|
error: methods called `new` usually return `Self`
|
2018-10-13 13:33:46 +00:00
|
|
|
--> $DIR/new_ret_no_self.rs:81:5
|
2018-10-03 10:55:31 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / pub fn new() -> u32 {
|
|
|
|
LL | | unimplemented!();
|
|
|
|
LL | | }
|
2018-10-03 10:55:31 +00:00
|
|
|
| |_____^
|
|
|
|
|
2018-10-05 02:01:04 +00:00
|
|
|
error: methods called `new` usually return `Self`
|
2018-10-13 13:33:46 +00:00
|
|
|
--> $DIR/new_ret_no_self.rs:90:5
|
2018-10-05 02:01:04 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / pub fn new(_: String) -> u32 {
|
|
|
|
LL | | unimplemented!();
|
|
|
|
LL | | }
|
2018-10-05 02:01:04 +00:00
|
|
|
| |_____^
|
|
|
|
|
2018-10-19 11:55:06 +00:00
|
|
|
error: methods called `new` usually return `Self`
|
2018-12-27 15:57:55 +00:00
|
|
|
--> $DIR/new_ret_no_self.rs:126:5
|
|
|
|
|
|
|
|
|
LL | / pub fn new() -> (u32, u32) {
|
|
|
|
LL | | unimplemented!();
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
2018-10-19 11:55:06 +00:00
|
|
|
|
2018-10-19 12:20:33 +00:00
|
|
|
error: methods called `new` usually return `Self`
|
2018-12-27 15:57:55 +00:00
|
|
|
--> $DIR/new_ret_no_self.rs:153:5
|
|
|
|
|
|
|
|
|
LL | / pub fn new() -> *mut V {
|
|
|
|
LL | | unimplemented!();
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
2018-10-19 12:20:33 +00:00
|
|
|
|
2018-10-20 13:29:17 +00:00
|
|
|
error: methods called `new` usually return `Self`
|
2018-12-27 15:57:55 +00:00
|
|
|
--> $DIR/new_ret_no_self.rs:171:5
|
|
|
|
|
|
|
|
|
LL | / pub fn new() -> Option<u32> {
|
|
|
|
LL | | unimplemented!();
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
2018-10-20 13:29:17 +00:00
|
|
|
|
2020-08-28 14:10:16 +00:00
|
|
|
error: methods called `new` usually return `Self`
|
|
|
|
--> $DIR/new_ret_no_self.rs:224:9
|
|
|
|
|
|
|
|
|
LL | fn new() -> String;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: methods called `new` usually return `Self`
|
|
|
|
--> $DIR/new_ret_no_self.rs:236:9
|
|
|
|
|
|
|
|
|
LL | fn new(_: String) -> String;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: methods called `new` usually return `Self`
|
|
|
|
--> $DIR/new_ret_no_self.rs:271:9
|
|
|
|
|
|
|
|
|
LL | / fn new() -> (u32, u32) {
|
|
|
|
LL | | unimplemented!();
|
|
|
|
LL | | }
|
|
|
|
| |_________^
|
|
|
|
|
|
|
|
error: methods called `new` usually return `Self`
|
|
|
|
--> $DIR/new_ret_no_self.rs:298:9
|
|
|
|
|
|
|
|
|
LL | / fn new() -> *mut V {
|
|
|
|
LL | | unimplemented!();
|
|
|
|
LL | | }
|
|
|
|
| |_________^
|
|
|
|
|
|
|
|
error: aborting due to 10 previous errors
|
2018-10-03 10:55:31 +00:00
|
|
|
|