Being Ty::InferenceVar closes to chalk equivalent

This commit is contained in:
Lukas Wirth 2021-03-01 12:35:11 +01:00
parent 4e5c496199
commit 11a1f13cd1
11 changed files with 172 additions and 152 deletions

View file

@ -565,7 +565,7 @@ impl HirDisplay for Ty {
}
write!(f, "{{unknown}}")?;
}
Ty::Infer(..) => write!(f, "_")?,
Ty::InferenceVar(..) => write!(f, "_")?,
}
Ok(())
}