Correct fmt
This commit is contained in:
@@ -1389,10 +1389,7 @@ impl<'hir> LoweringContext<'_, 'hir> {
|
|||||||
{
|
{
|
||||||
for param in &generics.params {
|
for param in &generics.params {
|
||||||
if def_id == self.resolver.local_def_id(param.id).to_def_id() {
|
if def_id == self.resolver.local_def_id(param.id).to_def_id() {
|
||||||
add_bounds
|
add_bounds.entry(param.id).or_default().push(bound.clone());
|
||||||
.entry(param.id)
|
|
||||||
.or_default()
|
|
||||||
.push(bound.clone());
|
|
||||||
continue 'next_bound;
|
continue 'next_bound;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user