Skip to content

Commit 5631939

Browse files
committed
fmt
1 parent 0dac974 commit 5631939

File tree

5 files changed

+15
-14
lines changed

5 files changed

+15
-14
lines changed

compiler/rustc_infer/src/infer/relate/type_relating.rs

+7-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,12 @@ impl<'combine, 'infcx, 'tcx> TypeRelating<'combine, 'infcx, 'tcx> {
2626
structurally_relate_aliases: StructurallyRelateAliases,
2727
ambient_variance: ty::Variance,
2828
) -> TypeRelating<'combine, 'infcx, 'tcx> {
29-
TypeRelating { fields: f, structurally_relate_aliases, ambient_variance, cache: Default::default() }
29+
TypeRelating {
30+
fields: f,
31+
structurally_relate_aliases,
32+
ambient_variance,
33+
cache: Default::default(),
34+
}
3035
}
3136
}
3237

@@ -76,11 +81,10 @@ impl<'tcx> TypeRelation<TyCtxt<'tcx>> for TypeRelating<'_, '_, 'tcx> {
7681
return Ok(a);
7782
}
7883

79-
8084
let infcx = self.fields.infcx;
8185
let a = infcx.shallow_resolve(a);
8286
let b = infcx.shallow_resolve(b);
83-
87+
8488
if self.cache.contains(&(self.ambient_variance, a, b)) {
8589
return Ok(a);
8690
}

compiler/rustc_infer/src/infer/resolve.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ impl<'a, 'tcx> TypeFolder<TyCtxt<'tcx>> for OpportunisticVarResolver<'a, 'tcx> {
3636
if let Some(&ty) = self.cache.get(&t) {
3737
return ty;
3838
}
39-
39+
4040
let res = if !t.has_non_region_infer() {
4141
t // micro-optimize -- if there is nothing in this type that this fold affects...
4242
} else {

compiler/rustc_next_trait_solver/src/resolve.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
use rustc_type_ir::data_structures::HashMap;
12
use rustc_type_ir::fold::{TypeFoldable, TypeFolder, TypeSuperFoldable};
23
use rustc_type_ir::inherent::*;
34
use rustc_type_ir::visit::TypeVisitableExt;
45
use rustc_type_ir::{self as ty, InferCtxtLike, Interner};
5-
use rustc_type_ir::data_structures::HashMap;
66

77
use crate::delegate::SolverDelegate;
88

compiler/rustc_next_trait_solver/src/solve/eval_ctxt/mod.rs

+6-8
Original file line numberDiff line numberDiff line change
@@ -585,18 +585,16 @@ where
585585

586586
#[instrument(level = "trace", skip(self))]
587587
pub(super) fn add_normalizes_to_goal(&mut self, mut goal: Goal<I, ty::NormalizesTo<I>>) {
588-
goal.predicate = goal
589-
.predicate
590-
.fold_with(&mut ReplaceAliasWithInfer::new(self, goal.param_env));
588+
goal.predicate =
589+
goal.predicate.fold_with(&mut ReplaceAliasWithInfer::new(self, goal.param_env));
591590
self.inspect.add_normalizes_to_goal(self.delegate, self.max_input_universe, goal);
592591
self.nested_goals.normalizes_to_goals.push(goal);
593592
}
594593

595594
#[instrument(level = "debug", skip(self))]
596595
pub(super) fn add_goal(&mut self, source: GoalSource, mut goal: Goal<I, I::Predicate>) {
597-
goal.predicate = goal
598-
.predicate
599-
.fold_with(&mut ReplaceAliasWithInfer::new(self, goal.param_env));
596+
goal.predicate =
597+
goal.predicate.fold_with(&mut ReplaceAliasWithInfer::new(self, goal.param_env));
600598
self.inspect.add_goal(self.delegate, self.max_input_universe, source, goal);
601599
self.nested_goals.goals.push((source, goal));
602600
}
@@ -681,7 +679,7 @@ where
681679
if self.cache.contains(&t) {
682680
return ControlFlow::Continue(());
683681
}
684-
682+
685683
match t.kind() {
686684
ty::Infer(ty::TyVar(vid)) => {
687685
if let ty::TermKind::Ty(term) = self.term.kind() {
@@ -1035,7 +1033,7 @@ impl<'me, 'a, D, I> ReplaceAliasWithInfer<'me, 'a, D, I>
10351033
where
10361034
D: SolverDelegate<Interner = I>,
10371035
I: Interner,
1038-
{
1036+
{
10391037
fn new(ecx: &'me mut EvalCtxt<'a, D>, param_env: I::ParamEnv) -> Self {
10401038
ReplaceAliasWithInfer { ecx, param_env, cache: Default::default() }
10411039
}

tests/ui/traits/next-solver/overflow/coherence-alias-hang.rs

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
//@[ai_next] compile-flags: -Znext-solver
44
//@[ia_next] compile-flags: -Znext-solver
55
//@[ii_next] compile-flags: -Znext-solver
6-
// check-pass
76

87
// Regression test for nalgebra hang <https://github.com/rust-lang/rust/issues/130056>.
98

0 commit comments

Comments
 (0)