2020-05-28 13:45:24 +00:00
|
|
|
error: you should consider adding a `Default` implementation for `Foo`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/new_without_default.rs:12:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / pub fn new() -> Foo {
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
|
|
|
LL | |
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | | Foo
|
|
|
|
LL | | }
|
2018-12-10 05:27:19 +00:00
|
|
|
| |_____^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-17 23:25:49 +00:00
|
|
|
= note: `-D clippy::new-without-default` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::new_without_default)]`
|
2021-07-29 10:16:06 +00:00
|
|
|
help: try adding this
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL + impl Default for Foo {
|
|
|
|
LL + fn default() -> Self {
|
|
|
|
LL + Self::new()
|
|
|
|
LL + }
|
|
|
|
LL + }
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2020-05-28 13:45:24 +00:00
|
|
|
error: you should consider adding a `Default` implementation for `Bar`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/new_without_default.rs:22:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / pub fn new() -> Self {
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | | Bar
|
|
|
|
LL | | }
|
2018-12-10 05:27:19 +00:00
|
|
|
| |_____^
|
2019-10-26 19:53:42 +00:00
|
|
|
|
|
2021-07-29 10:16:06 +00:00
|
|
|
help: try adding this
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL + impl Default for Bar {
|
|
|
|
LL + fn default() -> Self {
|
|
|
|
LL + Self::new()
|
|
|
|
LL + }
|
|
|
|
LL + }
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: you should consider adding a `Default` implementation for `LtKo<'c>`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/new_without_default.rs:87:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / pub fn new() -> LtKo<'c> {
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | | unimplemented!()
|
|
|
|
LL | | }
|
2018-12-10 05:27:19 +00:00
|
|
|
| |_____^
|
2019-10-26 19:53:42 +00:00
|
|
|
|
|
2021-07-29 10:16:06 +00:00
|
|
|
help: try adding this
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL + impl<'c> Default for LtKo<'c> {
|
|
|
|
LL + fn default() -> Self {
|
|
|
|
LL + Self::new()
|
|
|
|
LL + }
|
|
|
|
LL + }
|
2017-11-29 16:10:53 +00:00
|
|
|
|
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2023-06-07 02:32:27 +00:00
|
|
|
error: you should consider adding a `Default` implementation for `Const`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/new_without_default.rs:120:5
|
2023-06-07 02:32:27 +00:00
|
|
|
|
|
|
|
|
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 + }
|
|
|
|
|
|
|
|
|
|
2020-05-28 13:45:24 +00:00
|
|
|
error: you should consider adding a `Default` implementation for `NewNotEqualToDerive`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/new_without_default.rs:180:5
|
2020-05-28 13:45:24 +00:00
|
|
|
|
|
|
|
|
LL | / pub fn new() -> Self {
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2020-05-28 13:45:24 +00:00
|
|
|
LL | | NewNotEqualToDerive { foo: 1 }
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
2021-07-29 10:16:06 +00:00
|
|
|
help: try adding this
|
2020-05-28 13:45:24 +00:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL + impl Default for NewNotEqualToDerive {
|
|
|
|
LL + fn default() -> Self {
|
|
|
|
LL + Self::new()
|
|
|
|
LL + }
|
|
|
|
LL + }
|
2020-05-28 13:45:24 +00:00
|
|
|
|
|
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
error: you should consider adding a `Default` implementation for `FooGenerics<T>`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/new_without_default.rs:189:5
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
LL | / pub fn new() -> Self {
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2021-03-25 18:29:11 +00:00
|
|
|
LL | | Self(Default::default())
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
2021-07-29 10:16:06 +00:00
|
|
|
help: try adding this
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL + impl<T> Default for FooGenerics<T> {
|
|
|
|
LL + fn default() -> Self {
|
|
|
|
LL + Self::new()
|
|
|
|
LL + }
|
|
|
|
LL + }
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
error: you should consider adding a `Default` implementation for `BarGenerics<T>`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/new_without_default.rs:197:5
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
LL | / pub fn new() -> Self {
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2021-03-25 18:29:11 +00:00
|
|
|
LL | | Self(Default::default())
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
2021-07-29 10:16:06 +00:00
|
|
|
help: try adding this
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL + impl<T: Copy> Default for BarGenerics<T> {
|
|
|
|
LL + fn default() -> Self {
|
|
|
|
LL + Self::new()
|
|
|
|
LL + }
|
|
|
|
LL + }
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
|
2021-07-29 10:16:06 +00:00
|
|
|
error: you should consider adding a `Default` implementation for `Foo<T>`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/new_without_default.rs:209:9
|
2021-07-29 10:16:06 +00:00
|
|
|
|
|
|
|
|
LL | / pub fn new() -> Self {
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2021-07-29 10:16:06 +00:00
|
|
|
LL | | todo!()
|
|
|
|
LL | | }
|
|
|
|
| |_________^
|
|
|
|
|
|
|
|
|
help: try adding this
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ impl<T> Default for Foo<T> {
|
|
|
|
LL + fn default() -> Self {
|
|
|
|
LL + Self::new()
|
|
|
|
LL + }
|
|
|
|
LL + }
|
|
|
|
LL +
|
2022-06-16 14:00:32 +00:00
|
|
|
LL ~ impl<T> Foo<T> {
|
|
|
|
|
|
2021-07-29 10:16:06 +00:00
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
error: you should consider adding a `Default` implementation for `MyStruct<K, V>`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/new_without_default.rs:255:5
|
2023-08-24 19:32:12 +00:00
|
|
|
|
|
|
|
|
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 + }
|
|
|
|
|
|
|
|
|
|
2023-06-07 02:32:27 +00:00
|
|
|
error: aborting due to 9 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|