2017-02-07 14:05:30 -06:00
|
|
|
error: you should consider deriving a `Default` implementation for `Foo`
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/new_without_default.rs:17:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
17 | / pub fn new() -> Foo {
|
|
|
|
18 | | Foo
|
|
|
|
19 | | }
|
|
|
|
| |_____^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::new-without-default-derive` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
help: try this
|
2017-07-10 08:29:29 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
14 | #[derive(Default)]
|
2017-07-10 08:29:29 -05:00
|
|
|
|
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: you should consider deriving a `Default` implementation for `Bar`
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/new_without_default.rs:25:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
25 | / pub fn new() -> Self {
|
|
|
|
26 | | Bar
|
|
|
|
27 | | }
|
|
|
|
| |_____^
|
2017-02-07 14:05:30 -06:00
|
|
|
help: try this
|
2017-07-10 08:29:29 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
22 | #[derive(Default)]
|
2017-07-10 08:29:29 -05:00
|
|
|
|
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: you should consider adding a `Default` implementation for `LtKo<'c>`
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/new_without_default.rs:89:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
89 | / pub fn new() -> LtKo<'c> {
|
|
|
|
90 | | unimplemented!()
|
|
|
|
91 | | }
|
|
|
|
| |_____^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::new-without-default` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
help: try this
|
2017-07-10 08:29:29 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
88 | impl Default for LtKo<'c> {
|
|
|
|
89 | fn default() -> Self {
|
|
|
|
90 | Self::new()
|
|
|
|
91 | }
|
|
|
|
92 | }
|
2017-11-29 10:10:53 -06:00
|
|
|
|
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2018-01-16 10:06:27 -06:00
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|