rust/tests/ui/new_without_default.stderr

125 lines
2.7 KiB
Plaintext
Raw Normal View History

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