remove the usize field from CandidateSource::AliasBound

This commit is contained in:
Lenko Donchev
2023-01-27 22:50:24 -06:00
parent 7d4df2d30e
commit d4a816c813
3 changed files with 5 additions and 7 deletions

View File

@@ -171,7 +171,7 @@ impl<'tcx> EvalCtxt<'_, 'tcx> {
(CandidateSource::Impl(_), _)
| (CandidateSource::ParamEnv(_), _)
| (CandidateSource::BuiltinImpl, _)
| (CandidateSource::AliasBound(_), _) => unimplemented!(),
| (CandidateSource::AliasBound(), _) => unimplemented!(),
}
}
}