Skip to content

Commit f37d606

Browse files
committed
note for ty::Error.
1 parent afa75d6 commit f37d606

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

src/librustc_trait_selection/traits/structural_match.rs

+14-7
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,7 @@ impl<'a, 'tcx> TypeVisitor<'tcx> for Search<'a, 'tcx> {
186186
| ty::Uint(_)
187187
| ty::Float(_)
188188
| ty::Str
189-
| ty::Never
190-
| ty::Error => {
189+
| ty::Never => {
191190
// These primitive types are always structural match.
192191
//
193192
// `Never` is kind of special here, but as it is not inhabitable, this should be fine.
@@ -199,17 +198,25 @@ impl<'a, 'tcx> TypeVisitor<'tcx> for Search<'a, 'tcx> {
199198
| ty::Ref(..)
200199
| ty::Closure(..)
201200
| ty::Generator(..)
202-
| ty::GeneratorWitness(..)
203201
| ty::Tuple(..)
204202
| ty::Projection(..)
205-
| ty::UnnormalizedProjection(..)
206203
| ty::Opaque(..)
207-
| ty::Bound(..)
208-
| ty::Placeholder(_)
209-
| ty::Infer(_) => {
204+
| ty::GeneratorWitness(..) => {
210205
ty.super_visit_with(self);
211206
return false;
212207
}
208+
| ty::Infer(_)
209+
| ty::Placeholder(_)
210+
| ty::UnnormalizedProjection(..)
211+
| ty::Bound(..) => {
212+
bug!("unexpected type during structural-match checking: {:?}", ty);
213+
}
214+
ty::Error => {
215+
self.tcx().delay_span_bug(self.span, "ty::Error in structural-match check");
216+
// We still want to check other types after encountering an error,
217+
// as this may still emit relevant errors.
218+
return false;
219+
}
213220
};
214221

215222
if !self.seen.insert(adt_def.did) {

0 commit comments

Comments
 (0)