mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 09:27:25 +00:00
112 lines
2.7 KiB
Text
112 lines
2.7 KiB
Text
error: methods called `new` usually return `Self`
|
|
--> $DIR/new_ret_no_self.rs:50:5
|
|
|
|
|
LL | / pub fn new(_: String) -> impl R<Item = u32> {
|
|
LL | | S3
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
= note: `-D clippy::new-ret-no-self` implied by `-D warnings`
|
|
|
|
error: methods called `new` usually return `Self`
|
|
--> $DIR/new_ret_no_self.rs:82:5
|
|
|
|
|
LL | / pub fn new() -> u32 {
|
|
LL | | unimplemented!();
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: methods called `new` usually return `Self`
|
|
--> $DIR/new_ret_no_self.rs:91:5
|
|
|
|
|
LL | / pub fn new(_: String) -> u32 {
|
|
LL | | unimplemented!();
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: methods called `new` usually return `Self`
|
|
--> $DIR/new_ret_no_self.rs:127:5
|
|
|
|
|
LL | / pub fn new() -> (u32, u32) {
|
|
LL | | unimplemented!();
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: methods called `new` usually return `Self`
|
|
--> $DIR/new_ret_no_self.rs:154:5
|
|
|
|
|
LL | / pub fn new() -> *mut V {
|
|
LL | | unimplemented!();
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: methods called `new` usually return `Self`
|
|
--> $DIR/new_ret_no_self.rs:172:5
|
|
|
|
|
LL | / pub fn new() -> Option<u32> {
|
|
LL | | unimplemented!();
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: methods called `new` usually return `Self`
|
|
--> $DIR/new_ret_no_self.rs:225:9
|
|
|
|
|
LL | fn new() -> String;
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: methods called `new` usually return `Self`
|
|
--> $DIR/new_ret_no_self.rs:237:9
|
|
|
|
|
LL | fn new(_: String) -> String;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: methods called `new` usually return `Self`
|
|
--> $DIR/new_ret_no_self.rs:272:9
|
|
|
|
|
LL | / fn new() -> (u32, u32) {
|
|
LL | | unimplemented!();
|
|
LL | | }
|
|
| |_________^
|
|
|
|
error: methods called `new` usually return `Self`
|
|
--> $DIR/new_ret_no_self.rs:299:9
|
|
|
|
|
LL | / fn new() -> *mut V {
|
|
LL | | unimplemented!();
|
|
LL | | }
|
|
| |_________^
|
|
|
|
error: methods called `new` usually return `Self`
|
|
--> $DIR/new_ret_no_self.rs:369:9
|
|
|
|
|
LL | / fn new(t: T) -> impl Into<i32> {
|
|
LL | | 1
|
|
LL | | }
|
|
| |_________^
|
|
|
|
error: methods called `new` usually return `Self`
|
|
--> $DIR/new_ret_no_self.rs:390:9
|
|
|
|
|
LL | / fn new(t: T) -> impl Trait2<(), i32> {
|
|
LL | | unimplemented!()
|
|
LL | | }
|
|
| |_________^
|
|
|
|
error: methods called `new` usually return `Self`
|
|
--> $DIR/new_ret_no_self.rs:410:9
|
|
|
|
|
LL | / pub fn new() -> impl PartialOrd {
|
|
LL | | 0i32
|
|
LL | | }
|
|
| |_________^
|
|
|
|
error: methods called `new` usually return `Self`
|
|
--> $DIR/new_ret_no_self.rs:421:9
|
|
|
|
|
LL | / pub fn new() -> X {
|
|
LL | | 0i32
|
|
LL | | }
|
|
| |_________^
|
|
|
|
error: aborting due to 14 previous errors
|
|
|