Skip to content

Commit 7c4d276

Browse files
committed
[new_without_default]: include where clauses in suggestion
Fix #11267
1 parent 1cfe51c commit 7c4d276

File tree

3 files changed

+55
-4
lines changed

3 files changed

+55
-4
lines changed

clippy_lints/src/new_without_default.rs

+16-3
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,11 @@ impl<'tcx> LateLintPass<'tcx> for NewWithoutDefault {
130130
}
131131

132132
let generics_sugg = snippet(cx, generics.span, "");
133+
let where_clause_sugg = if generics.has_where_clause_predicates {
134+
format!("\n{}\n", snippet(cx, generics.where_clause_span, ""))
135+
} else {
136+
String::new()
137+
};
133138
let self_ty_fmt = self_ty.to_string();
134139
let self_type_snip = snippet(cx, impl_self_ty.span, &self_ty_fmt);
135140
span_lint_hir_and_then(
@@ -145,7 +150,11 @@ impl<'tcx> LateLintPass<'tcx> for NewWithoutDefault {
145150
cx,
146151
item.span,
147152
"try adding this",
148-
&create_new_without_default_suggest_msg(&self_type_snip, &generics_sugg),
153+
&create_new_without_default_suggest_msg(
154+
&self_type_snip,
155+
&generics_sugg,
156+
&where_clause_sugg
157+
),
149158
Applicability::MaybeIncorrect,
150159
);
151160
},
@@ -159,10 +168,14 @@ impl<'tcx> LateLintPass<'tcx> for NewWithoutDefault {
159168
}
160169
}
161170

162-
fn create_new_without_default_suggest_msg(self_type_snip: &str, generics_sugg: &str) -> String {
171+
fn create_new_without_default_suggest_msg(
172+
self_type_snip: &str,
173+
generics_sugg: &str,
174+
where_clause_sugg: &str,
175+
) -> String {
163176
#[rustfmt::skip]
164177
format!(
165-
"impl{generics_sugg} Default for {self_type_snip} {{
178+
"impl{generics_sugg} Default for {self_type_snip}{where_clause_sugg} {{
166179
fn default() -> Self {{
167180
Self::new()
168181
}}

tests/ui/new_without_default.rs

+18
Original file line numberDiff line numberDiff line change
@@ -230,3 +230,21 @@ impl IgnoreLifetimeNew {
230230
Self
231231
}
232232
}
233+
234+
// From issue #11267
235+
236+
pub struct MyStruct<K, V>
237+
where
238+
K: std::hash::Hash + Eq + PartialEq,
239+
{
240+
_kv: Option<(K, V)>,
241+
}
242+
243+
impl<K, V> MyStruct<K, V>
244+
where
245+
K: std::hash::Hash + Eq + PartialEq,
246+
{
247+
pub fn new() -> Self {
248+
Self { _kv: None }
249+
}
250+
}

tests/ui/new_without_default.stderr

+21-1
Original file line numberDiff line numberDiff line change
@@ -120,5 +120,25 @@ LL +
120120
LL ~ impl<T> Foo<T> {
121121
|
122122

123-
error: aborting due to 7 previous errors
123+
error: you should consider adding a `Default` implementation for `MyStruct<K, V>`
124+
--> $DIR/new_without_default.rs:247:5
125+
|
126+
LL | / pub fn new() -> Self {
127+
LL | | Self { _kv: None }
128+
LL | | }
129+
| |_____^
130+
|
131+
help: try adding this
132+
|
133+
LL + impl<K, V> Default for MyStruct<K, V>
134+
LL + where
135+
LL + K: std::hash::Hash + Eq + PartialEq,
136+
LL + {
137+
LL + fn default() -> Self {
138+
LL + Self::new()
139+
LL + }
140+
LL + }
141+
|
142+
143+
error: aborting due to 8 previous errors
124144

0 commit comments

Comments
 (0)