2017-02-07 20:05:30 +00:00
|
|
|
error: you should consider deriving a `Default` implementation for `Foo`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/new_without_default.rs:8:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / pub fn new() -> Foo {
|
|
|
|
LL | | Foo
|
|
|
|
LL | | }
|
2018-12-10 05:27:19 +00:00
|
|
|
| |_____^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-17 23:25:49 +00:00
|
|
|
= note: `-D clippy::new-without-default` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
help: try this
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | #[derive(Default)]
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: you should consider deriving a `Default` implementation for `Bar`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/new_without_default.rs:16:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / pub fn new() -> Self {
|
|
|
|
LL | | Bar
|
|
|
|
LL | | }
|
2018-12-10 05:27:19 +00:00
|
|
|
| |_____^
|
2017-02-07 20:05:30 +00:00
|
|
|
help: try this
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | #[derive(Default)]
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: you should consider adding a `Default` implementation for `LtKo<'c>`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/new_without_default.rs:80:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / pub fn new() -> LtKo<'c> {
|
|
|
|
LL | | unimplemented!()
|
|
|
|
LL | | }
|
2018-12-10 05:27:19 +00:00
|
|
|
| |_____^
|
2017-02-07 20:05:30 +00:00
|
|
|
help: try this
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | impl Default for LtKo<'c> {
|
|
|
|
LL | fn default() -> Self {
|
|
|
|
LL | Self::new()
|
|
|
|
LL | }
|
|
|
|
LL | }
|
2017-11-29 16:10:53 +00:00
|
|
|
|
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|