2017-02-07 20:05:30 +00:00
|
|
|
error: you should consider deriving a `Default` implementation for `Foo`
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/new_without_default.rs:22:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
22 | pub fn new() -> Foo { Foo }
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::new-without-default-derive` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
help: try this
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
19 | #[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`
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/new_without_default.rs:28:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
28 | pub fn new() -> Self { Bar }
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
help: try this
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
25 | #[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>`
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/new_without_default.rs:76:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
76 | pub fn new() -> LtKo<'c> { unimplemented!() }
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2018-08-01 14:30:44 +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-10-06 16:18:06 +00:00
|
|
|
75 | impl Default for LtKo<'c> {
|
|
|
|
76 | fn default() -> Self {
|
|
|
|
77 | Self::new()
|
|
|
|
78 | }
|
|
|
|
79 | }
|
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
|
|
|
|
|