2018-10-03 03:55:31 -07:00
|
|
|
error: methods called `new` usually return `Self`
|
2018-10-13 06:33:46 -07:00
|
|
|
--> $DIR/new_ret_no_self.rs:49:5
|
2018-10-03 03:55:31 -07:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | / pub fn new(_: String) -> impl R<Item = u32> {
|
|
|
|
LL | | S3
|
|
|
|
LL | | }
|
2018-10-03 03:55:31 -07:00
|
|
|
| |_____^
|
2018-10-03 04:59:14 -07:00
|
|
|
|
|
|
|
|
= note: `-D clippy::new-ret-no-self` implied by `-D warnings`
|
2018-10-03 03:55:31 -07:00
|
|
|
|
|
|
|
error: methods called `new` usually return `Self`
|
2018-10-13 06:33:46 -07:00
|
|
|
--> $DIR/new_ret_no_self.rs:81:5
|
2018-10-03 03:55:31 -07:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | / pub fn new() -> u32 {
|
|
|
|
LL | | unimplemented!();
|
|
|
|
LL | | }
|
2018-10-03 03:55:31 -07:00
|
|
|
| |_____^
|
|
|
|
|
2018-10-04 19:01:04 -07:00
|
|
|
error: methods called `new` usually return `Self`
|
2018-10-13 06:33:46 -07:00
|
|
|
--> $DIR/new_ret_no_self.rs:90:5
|
2018-10-04 19:01:04 -07:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | / pub fn new(_: String) -> u32 {
|
|
|
|
LL | | unimplemented!();
|
|
|
|
LL | | }
|
2018-10-04 19:01:04 -07:00
|
|
|
| |_____^
|
|
|
|
|
2018-10-19 04:55:06 -07:00
|
|
|
error: methods called `new` usually return `Self`
|
2018-12-27 16:57:55 +01:00
|
|
|
--> $DIR/new_ret_no_self.rs:126:5
|
|
|
|
|
|
|
|
|
LL | / pub fn new() -> (u32, u32) {
|
|
|
|
LL | | unimplemented!();
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
2018-10-19 04:55:06 -07:00
|
|
|
|
2018-10-19 05:20:33 -07:00
|
|
|
error: methods called `new` usually return `Self`
|
2018-12-27 16:57:55 +01:00
|
|
|
--> $DIR/new_ret_no_self.rs:153:5
|
|
|
|
|
|
|
|
|
LL | / pub fn new() -> *mut V {
|
|
|
|
LL | | unimplemented!();
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
2018-10-19 05:20:33 -07:00
|
|
|
|
2018-10-20 06:29:17 -07:00
|
|
|
error: methods called `new` usually return `Self`
|
2018-12-27 16:57:55 +01:00
|
|
|
--> $DIR/new_ret_no_self.rs:171:5
|
|
|
|
|
|
|
|
|
LL | / pub fn new() -> Option<u32> {
|
|
|
|
LL | | unimplemented!();
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
2018-10-20 06:29:17 -07:00
|
|
|
|
2020-07-07 22:47:32 +02: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 03:55:31 -07:00
|
|
|
|