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-10 13:27:19 +08:00
--> $DIR/new_without_default.rs:17:5
|
2018-12-10 13:27:19 +08: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 21:29:29 +08:00
|
2018-12-10 13:27:19 +08:00
14 | #[derive(Default)]
2017-07-10 21:29:29 +08:00
|
error: you should consider deriving a `Default` implementation for `Bar`
2018-12-10 13:27:19 +08:00
--> $DIR/new_without_default.rs:25:5
|
2018-12-10 13:27:19 +08:00
25 | / pub fn new() -> Self {
26 | | Bar
27 | | }
| |_____^
help: try this
2017-07-10 21:29:29 +08:00
|
2018-12-10 13:27:19 +08:00
22 | #[derive(Default)]
2017-07-10 21:29:29 +08:00
|
error: you should consider adding a `Default` implementation for `LtKo<'c>`
2018-12-10 13:27:19 +08:00
--> $DIR/new_without_default.rs:89:5
|
2018-12-10 13:27:19 +08: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 21:29:29 +08:00
|
2018-12-10 13:27:19 +08:00
88 | impl Default for LtKo<'c> {
89 | fn default() -> Self {
90 | Self::new()
91 | }
92 | }
|
2018-01-17 00:06:27 +08:00
error: aborting due to 3 previous errors