rust/tests/ui/new_without_default.stderr

47 lines
1.0 KiB
Plaintext
Raw Normal View History

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
|
2018-12-09 23:27:19 -06:00
17 | / pub fn new() -> Foo {
18 | | Foo
19 | | }
| |_____^
|
= note: `-D clippy::new-without-default-derive` implied by `-D warnings`
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
|
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
|
2018-12-09 23:27:19 -06:00
25 | / pub fn new() -> Self {
26 | | Bar
27 | | }
| |_____^
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
|
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
|
2018-12-09 23:27:19 -06:00
89 | / pub fn new() -> LtKo<'c> {
90 | | unimplemented!()
91 | | }
| |_____^
|
= note: `-D clippy::new-without-default` implied by `-D warnings`
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 | }
|
2018-01-16 10:06:27 -06:00
error: aborting due to 3 previous errors