rust-clippy/tests/ui/new_without_default.stderr

41 lines
1 KiB
Text
Raw Normal View History

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
|
2018-10-06 16:18:06 +00:00
22 | pub fn new() -> Foo { Foo }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::new-without-default-derive` implied by `-D warnings`
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
|
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
|
2018-10-06 16:18:06 +00:00
28 | pub fn new() -> Self { Bar }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
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
|
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
|
2018-10-06 16:18:06 +00:00
76 | pub fn new() -> LtKo<'c> { unimplemented!() }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::new-without-default` implied by `-D warnings`
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 | }
|
2018-01-16 16:06:27 +00:00
error: aborting due to 3 previous errors