We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 977b0a5 commit 12ce418Copy full SHA for 12ce418
chalk-solve/src/infer/canonicalize.rs
@@ -41,14 +41,12 @@ impl<I: Interner> InferenceTable<I> {
41
};
42
let value = value.fold_with(&mut q, DebruijnIndex::INNERMOST).unwrap();
43
let free_vars = q.free_vars.clone();
44
- let max_universe = q.max_universe;
45
46
Canonicalized {
47
quantified: Canonical {
48
value,
49
binders: q.into_binders(),
50
},
51
- max_universe,
52
free_vars,
53
}
54
@@ -61,10 +59,6 @@ pub struct Canonicalized<T: HasInterner> {
61
59
62
60
/// The free existential variables, along with the universes they inhabit.
63
pub free_vars: Vec<ParameterEnaVariable<T::Interner>>,
64
-
65
- /// The maximum universe of any universally quantified variables
66
- /// encountered.
67
- max_universe: UniverseIndex,
68
69
70
struct Canonicalizer<'q, I: Interner> {
0 commit comments