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