rust/tests/ui/new_without_default.stderr

72 lines
1.5 KiB
Text
Raw Normal View History

error: you should consider adding a `Default` implementation for `Foo`
--> $DIR/new_without_default.rs:8:5
|
2018-12-27 16:57:55 +01:00
LL | / pub fn new() -> Foo {
LL | | Foo
LL | | }
2018-12-10 06:27:19 +01:00
| |_____^
|
= note: `-D clippy::new-without-default` implied by `-D warnings`
help: try this
2017-07-10 15:29:29 +02:00
|
LL | impl Default for Foo {
LL | fn default() -> Self {
LL | Self::new()
LL | }
LL | }
2017-07-10 15:29:29 +02:00
|
error: you should consider adding a `Default` implementation for `Bar`
--> $DIR/new_without_default.rs:16:5
|
2018-12-27 16:57:55 +01:00
LL | / pub fn new() -> Self {
LL | | Bar
LL | | }
2018-12-10 06:27:19 +01:00
| |_____^
2019-10-26 21:53:42 +02:00
|
help: try this
2017-07-10 15:29:29 +02:00
|
LL | impl Default for Bar {
LL | fn default() -> Self {
LL | Self::new()
LL | }
LL | }
2017-07-10 15:29:29 +02:00
|
error: you should consider adding a `Default` implementation for `LtKo<'c>`
--> $DIR/new_without_default.rs:80:5
|
2018-12-27 16:57:55 +01:00
LL | / pub fn new() -> LtKo<'c> {
LL | | unimplemented!()
LL | | }
2018-12-10 06:27:19 +01:00
| |_____^
2019-10-26 21:53:42 +02:00
|
help: try this
2017-07-10 15:29:29 +02:00
|
2018-12-27 16:57:55 +01:00
LL | impl Default for LtKo<'c> {
LL | fn default() -> Self {
LL | Self::new()
LL | }
LL | }
|
error: you should consider adding a `Default` implementation for `NewNotEqualToDerive`
--> $DIR/new_without_default.rs:157:5
|
LL | / pub fn new() -> Self {
LL | | NewNotEqualToDerive { foo: 1 }
LL | | }
| |_____^
|
help: try this
|
LL | impl Default for NewNotEqualToDerive {
LL | fn default() -> Self {
LL | Self::new()
LL | }
LL | }
|
error: aborting due to 4 previous errors
2018-01-16 17:06:27 +01:00