rust/tests/ui/new_without_default.stderr
2018-12-10 08:22:07 +01:00

46 lines
1 KiB
Text

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