mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
Assert is_associated_const
when resolving
This commit is contained in:
parent
bc243a7f55
commit
e44e65e888
@ -469,9 +469,10 @@ impl<'a, 'tcx> PatCtxt<'a, 'tcx> {
|
||||
let instance = match ty::Instance::resolve(self.tcx, param_env_reveal_all, def_id, substs) {
|
||||
Ok(Some(i)) => i,
|
||||
Ok(None) => {
|
||||
if is_associated_const {
|
||||
self.errors.push(PatternError::AssocConstInPattern(span));
|
||||
}
|
||||
// It should be assoc consts if there's no error but we cannot resolve it.
|
||||
debug_assert!(is_associated_const);
|
||||
|
||||
self.errors.push(PatternError::AssocConstInPattern(span));
|
||||
|
||||
return pat_from_kind(PatKind::Wild);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user