mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
170 lines
3.7 KiB
Text
170 lines
3.7 KiB
Text
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<T>`
|
|
--> 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<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>`
|
|
--> 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<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>`
|
|
--> tests/ui/new_without_default.rs:210:9
|
|
|
|
|
LL | / pub fn new() -> Self {
|
|
LL | |
|
|
LL | | todo!()
|
|
LL | | }
|
|
| |_________^
|
|
|
|
|
help: try adding this
|
|
|
|
|
LL ~ impl<T> Default for Foo<T> {
|
|
LL + fn default() -> Self {
|
|
LL + Self::new()
|
|
LL + }
|
|
LL + }
|
|
LL +
|
|
LL ~ impl<T> Foo<T> {
|
|
|
|
|
|
|
error: you should consider adding a `Default` implementation for `MyStruct<K, V>`
|
|
--> tests/ui/new_without_default.rs:256:5
|
|
|
|
|
LL | / pub fn new() -> Self {
|
|
LL | | Self { _kv: None }
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
help: try adding this
|
|
|
|
|
LL + impl<K, V> Default for MyStruct<K, V>
|
|
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
|
|
|