mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-18 02:38:28 +00:00
105 lines
2.2 KiB
Text
105 lines
2.2 KiB
Text
error: you should consider adding a `Default` implementation for `Foo`
|
|
--> $DIR/new_without_default.rs:7:5
|
|
|
|
|
LL | / pub fn new() -> Foo {
|
|
LL | | Foo
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
= note: `-D clippy::new-without-default` implied by `-D warnings`
|
|
help: try this
|
|
|
|
|
LL | impl Default for Foo {
|
|
LL | fn default() -> Self {
|
|
LL | Self::new()
|
|
LL | }
|
|
LL | }
|
|
|
|
|
|
|
error: you should consider adding a `Default` implementation for `Bar`
|
|
--> $DIR/new_without_default.rs:15:5
|
|
|
|
|
LL | / pub fn new() -> Self {
|
|
LL | | Bar
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
help: try this
|
|
|
|
|
LL | impl Default for Bar {
|
|
LL | fn default() -> Self {
|
|
LL | Self::new()
|
|
LL | }
|
|
LL | }
|
|
|
|
|
|
|
error: you should consider adding a `Default` implementation for `LtKo<'c>`
|
|
--> $DIR/new_without_default.rs:79:5
|
|
|
|
|
LL | / pub fn new() -> LtKo<'c> {
|
|
LL | | unimplemented!()
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
help: try this
|
|
|
|
|
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:156: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: you should consider adding a `Default` implementation for `FooGenerics<T>`
|
|
--> $DIR/new_without_default.rs:164:5
|
|
|
|
|
LL | / pub fn new() -> Self {
|
|
LL | | Self(Default::default())
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
help: try this
|
|
|
|
|
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:171:5
|
|
|
|
|
LL | / pub fn new() -> Self {
|
|
LL | | Self(Default::default())
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
help: try this
|
|
|
|
|
LL | impl<T: Copy> Default for BarGenerics<T> {
|
|
LL | fn default() -> Self {
|
|
LL | Self::new()
|
|
LL | }
|
|
LL | }
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
|
|