rust/tests/ui/new_without_default.stderr

124 lines
2.6 KiB
Plaintext
Raw Normal View History

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