2017-02-07 14:05:30 -06:00
|
|
|
error: you should consider deriving a `Default` implementation for `Foo`
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/new_without_default.rs:10:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-11 08:58:24 -05:00
|
|
|
10 | pub fn new() -> Foo { Foo }
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2017-05-17 07:19:44 -05:00
|
|
|
= note: `-D 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
|
|
|
|
|
|
|
|
7 | #[derive(Default)]
|
|
|
|
|
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: you should consider deriving a `Default` implementation for `Bar`
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/new_without_default.rs:16:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-11 08:58:24 -05:00
|
|
|
16 | pub fn new() -> Self { Bar }
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
help: try this
|
2017-07-10 08:29:29 -05:00
|
|
|
|
|
|
|
|
13 | #[derive(Default)]
|
|
|
|
|
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: you should consider adding a `Default` implementation for `LtKo<'c>`
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/new_without_default.rs:64:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-11 08:58:24 -05:00
|
|
|
64 | pub fn new() -> LtKo<'c> { unimplemented!() }
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2017-05-17 07:19:44 -05:00
|
|
|
= note: `-D 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
|
|
|
|
|
|
|
|
64 | impl Default for LtKo<'c> {
|
|
|
|
65 | fn default() -> Self {
|
|
|
|
66 | Self::new()
|
|
|
|
67 | }
|
|
|
|
68 | }
|
|
|
|
69 |
|
|
|
|
...
|
2017-02-07 14:05:30 -06:00
|
|
|
|