2020-05-28 15:45:24 +02:00
|
|
|
error: you should consider adding a `Default` implementation for `Foo`
|
2021-05-11 00:40:25 +02:00
|
|
|
--> $DIR/new_without_default.rs:7:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | / pub fn new() -> Foo {
|
|
|
|
LL | | Foo
|
|
|
|
LL | | }
|
2018-12-10 06:27:19 +01:00
|
|
|
| |_____^
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-17 16:25:49 -07:00
|
|
|
= note: `-D clippy::new-without-default` implied by `-D warnings`
|
2021-07-29 12:16:06 +02:00
|
|
|
help: try adding this
|
2017-07-10 15:29:29 +02:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL + impl Default for Foo {
|
|
|
|
LL + fn default() -> Self {
|
|
|
|
LL + Self::new()
|
|
|
|
LL + }
|
|
|
|
LL + }
|
2017-07-10 15:29:29 +02:00
|
|
|
|
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-05-28 15:45:24 +02:00
|
|
|
error: you should consider adding a `Default` implementation for `Bar`
|
2021-05-11 00:40:25 +02:00
|
|
|
--> $DIR/new_without_default.rs:15:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
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
|
|
|
|
|
2021-07-29 12:16:06 +02:00
|
|
|
help: try adding this
|
2017-07-10 15:29:29 +02:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL + impl Default for Bar {
|
|
|
|
LL + fn default() -> Self {
|
|
|
|
LL + Self::new()
|
|
|
|
LL + }
|
|
|
|
LL + }
|
2017-07-10 15:29:29 +02:00
|
|
|
|
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
|
|
error: you should consider adding a `Default` implementation for `LtKo<'c>`
|
2021-05-11 00:40:25 +02:00
|
|
|
--> $DIR/new_without_default.rs:79:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
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
|
|
|
|
|
2021-07-29 12:16:06 +02:00
|
|
|
help: try adding this
|
2017-07-10 15:29:29 +02:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL + impl<'c> Default for LtKo<'c> {
|
|
|
|
LL + fn default() -> Self {
|
|
|
|
LL + Self::new()
|
|
|
|
LL + }
|
|
|
|
LL + }
|
2017-11-29 17:10:53 +01:00
|
|
|
|
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-05-28 15:45:24 +02:00
|
|
|
error: you should consider adding a `Default` implementation for `NewNotEqualToDerive`
|
2022-02-26 14:26:21 +01:00
|
|
|
--> $DIR/new_without_default.rs:172:5
|
2020-05-28 15:45:24 +02:00
|
|
|
|
|
|
|
|
LL | / pub fn new() -> Self {
|
|
|
|
LL | | NewNotEqualToDerive { foo: 1 }
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
2021-07-29 12:16:06 +02:00
|
|
|
help: try adding this
|
2020-05-28 15:45:24 +02:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL + impl Default for NewNotEqualToDerive {
|
|
|
|
LL + fn default() -> Self {
|
|
|
|
LL + Self::new()
|
|
|
|
LL + }
|
|
|
|
LL + }
|
2020-05-28 15:45:24 +02:00
|
|
|
|
|
|
|
|
|
2021-03-25 19:29:11 +01:00
|
|
|
error: you should consider adding a `Default` implementation for `FooGenerics<T>`
|
2022-02-26 14:26:21 +01:00
|
|
|
--> $DIR/new_without_default.rs:180:5
|
2021-03-25 19:29:11 +01:00
|
|
|
|
|
|
|
|
LL | / pub fn new() -> Self {
|
|
|
|
LL | | Self(Default::default())
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
2021-07-29 12:16:06 +02:00
|
|
|
help: try adding this
|
2021-03-25 19:29:11 +01:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL + impl<T> Default for FooGenerics<T> {
|
|
|
|
LL + fn default() -> Self {
|
|
|
|
LL + Self::new()
|
|
|
|
LL + }
|
|
|
|
LL + }
|
2021-03-25 19:29:11 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
error: you should consider adding a `Default` implementation for `BarGenerics<T>`
|
2022-02-26 14:26:21 +01:00
|
|
|
--> $DIR/new_without_default.rs:187:5
|
2021-03-25 19:29:11 +01:00
|
|
|
|
|
|
|
|
LL | / pub fn new() -> Self {
|
|
|
|
LL | | Self(Default::default())
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
2021-07-29 12:16:06 +02:00
|
|
|
help: try adding this
|
2021-03-25 19:29:11 +01:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL + impl<T: Copy> Default for BarGenerics<T> {
|
|
|
|
LL + fn default() -> Self {
|
|
|
|
LL + Self::new()
|
|
|
|
LL + }
|
|
|
|
LL + }
|
2021-03-25 19:29:11 +01:00
|
|
|
|
|
|
|
|
|
2021-07-29 12:16:06 +02:00
|
|
|
error: you should consider adding a `Default` implementation for `Foo<T>`
|
2022-02-26 14:26:21 +01:00
|
|
|
--> $DIR/new_without_default.rs:198:9
|
2021-07-29 12:16:06 +02:00
|
|
|
|
|
|
|
|
LL | / pub fn new() -> Self {
|
|
|
|
LL | | todo!()
|
|
|
|
LL | | }
|
|
|
|
| |_________^
|
|
|
|
|
|
|
|
|
help: try adding this
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ impl<T> Default for Foo<T> {
|
|
|
|
LL + fn default() -> Self {
|
|
|
|
LL + Self::new()
|
|
|
|
LL + }
|
|
|
|
LL + }
|
|
|
|
LL +
|
2022-06-16 18:00:32 +04:00
|
|
|
LL ~ impl<T> Foo<T> {
|
|
|
|
|
|
2021-07-29 12:16:06 +02:00
|
|
|
|
|
|
|
error: aborting due to 7 previous errors
|
2018-01-16 17:06:27 +01:00
|
|
|
|