mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 00:03:43 +00:00
19 lines
417 B
Plaintext
19 lines
417 B
Plaintext
|
error: methods called `new` usually return `Self`
|
||
|
--> $DIR/new_ret_no_self.rs:51:5
|
||
|
|
|
||
|
51 | / pub fn new() -> u32 {
|
||
|
52 | | unimplemented!();
|
||
|
53 | | }
|
||
|
| |_____^
|
||
|
|
||
|
error: methods called `new` usually return `Self`
|
||
|
--> $DIR/new_ret_no_self.rs:60:5
|
||
|
|
|
||
|
60 | / pub fn new(_: String) -> u32 {
|
||
|
61 | | unimplemented!();
|
||
|
62 | | }
|
||
|
| |_____^
|
||
|
|
||
|
error: aborting due to 2 previous errors
|
||
|
|