kind -> kind()

This commit is contained in:
Jack Huey 2020-09-04 19:17:57 -04:00
parent 3a9a4e8b2d
commit 0aa215305a

View file

@ -1009,7 +1009,7 @@ impl PlaceholdersCollector {
impl<'tcx> TypeVisitor<'tcx> for PlaceholdersCollector {
fn visit_ty(&mut self, t: Ty<'tcx>) -> bool {
match t.kind {
match t.kind() {
ty::Placeholder(p) if p.universe == self.universe_index => {
self.next_ty_placeholder = self.next_ty_placeholder.max(p.name.as_usize() + 1);
}