error: you should consider adding a `Default` implementation for `Foo` --> tests/ui/new_without_default.rs:13:5 | LL | / pub fn new() -> Foo { LL | | LL | | LL | | Foo LL | | } | |_____^ | = note: `-D clippy::new-without-default` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::new_without_default)]` help: try adding 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` --> tests/ui/new_without_default.rs:23:5 | LL | / pub fn new() -> Self { LL | | LL | | Bar LL | | } | |_____^ | help: try adding 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>` --> tests/ui/new_without_default.rs:88:5 | LL | / pub fn new() -> LtKo<'c> { LL | | LL | | unimplemented!() LL | | } | |_____^ | help: try adding 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 `Const` --> tests/ui/new_without_default.rs:121:5 | LL | / pub const fn new() -> Const { LL | | Const LL | | } // While Default is not const, it can still call const functions, so we should lint this | |_____^ | help: try adding this | LL + impl Default for Const { LL + fn default() -> Self { LL + Self::new() LL + } LL + } | error: you should consider adding a `Default` implementation for `NewNotEqualToDerive` --> tests/ui/new_without_default.rs:181:5 | LL | / pub fn new() -> Self { LL | | LL | | NewNotEqualToDerive { foo: 1 } LL | | } | |_____^ | help: try adding 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` --> tests/ui/new_without_default.rs:190:5 | LL | / pub fn new() -> Self { LL | | LL | | Self(Default::default()) LL | | } | |_____^ | help: try adding this | LL + impl Default for FooGenerics { LL + fn default() -> Self { LL + Self::new() LL + } LL + } | error: you should consider adding a `Default` implementation for `BarGenerics` --> tests/ui/new_without_default.rs:198:5 | LL | / pub fn new() -> Self { LL | | LL | | Self(Default::default()) LL | | } | |_____^ | help: try adding this | LL + impl Default for BarGenerics { LL + fn default() -> Self { LL + Self::new() LL + } LL + } | error: you should consider adding a `Default` implementation for `Foo` --> tests/ui/new_without_default.rs:210:9 | LL | / pub fn new() -> Self { LL | | LL | | todo!() LL | | } | |_________^ | help: try adding this | LL ~ impl Default for Foo { LL + fn default() -> Self { LL + Self::new() LL + } LL + } LL + LL ~ impl Foo { | error: you should consider adding a `Default` implementation for `MyStruct` --> tests/ui/new_without_default.rs:256:5 | LL | / pub fn new() -> Self { LL | | Self { _kv: None } LL | | } | |_____^ | help: try adding this | LL + impl Default for MyStruct LL + where LL + K: std::hash::Hash + Eq + PartialEq, LL + { LL + fn default() -> Self { LL + Self::new() LL + } LL + } | error: aborting due to 9 previous errors