@@ -1201,7 +1201,8 @@ impl<'o, 'tcx> dyn AstConv<'tcx> + 'o {
1201
1201
( _, _) => {
1202
1202
let got = if let Some ( _) = term. ty ( ) { "type" } else { "constant" } ;
1203
1203
let expected = def_kind. descr ( assoc_item_def_id) ;
1204
- tcx. sess
1204
+ let reported = tcx
1205
+ . sess
1205
1206
. struct_span_err (
1206
1207
binding. span ,
1207
1208
& format ! ( "expected {expected} bound, found {got}" ) ,
@@ -1212,11 +1213,14 @@ impl<'o, 'tcx> dyn AstConv<'tcx> + 'o {
1212
1213
)
1213
1214
. emit ( ) ;
1214
1215
term = match def_kind {
1215
- hir:: def:: DefKind :: AssocTy => tcx. ty_error ( ) . into ( ) ,
1216
+ hir:: def:: DefKind :: AssocTy => {
1217
+ tcx. ty_error_with_guaranteed ( reported) . into ( )
1218
+ }
1216
1219
hir:: def:: DefKind :: AssocConst => tcx
1217
- . const_error (
1220
+ . const_error_with_guaranteed (
1218
1221
tcx. bound_type_of ( assoc_item_def_id)
1219
1222
. subst ( tcx, projection_ty. skip_binder ( ) . substs ) ,
1223
+ reported,
1220
1224
)
1221
1225
. into ( ) ,
1222
1226
_ => unreachable ! ( ) ,
@@ -1334,8 +1338,9 @@ impl<'o, 'tcx> dyn AstConv<'tcx> + 'o {
1334
1338
. map ( |& ( trait_ref, _, _) | trait_ref. def_id ( ) )
1335
1339
. find ( |& trait_ref| tcx. is_trait_alias ( trait_ref) )
1336
1340
. map ( |trait_ref| tcx. def_span ( trait_ref) ) ;
1337
- tcx. sess . emit_err ( TraitObjectDeclaredWithNoTraits { span, trait_alias_span } ) ;
1338
- return tcx. ty_error ( ) ;
1341
+ let reported =
1342
+ tcx. sess . emit_err ( TraitObjectDeclaredWithNoTraits { span, trait_alias_span } ) ;
1343
+ return tcx. ty_error_with_guaranteed ( reported) ;
1339
1344
}
1340
1345
1341
1346
// Check that there are no gross object safety violations;
@@ -1345,14 +1350,14 @@ impl<'o, 'tcx> dyn AstConv<'tcx> + 'o {
1345
1350
let object_safety_violations =
1346
1351
astconv_object_safety_violations ( tcx, item. trait_ref ( ) . def_id ( ) ) ;
1347
1352
if !object_safety_violations. is_empty ( ) {
1348
- report_object_safety_error (
1353
+ let reported = report_object_safety_error (
1349
1354
tcx,
1350
1355
span,
1351
1356
item. trait_ref ( ) . def_id ( ) ,
1352
1357
& object_safety_violations,
1353
1358
)
1354
1359
. emit ( ) ;
1355
- return tcx. ty_error ( ) ;
1360
+ return tcx. ty_error_with_guaranteed ( reported ) ;
1356
1361
}
1357
1362
}
1358
1363
@@ -2112,13 +2117,13 @@ impl<'o, 'tcx> dyn AstConv<'tcx> + 'o {
2112
2117
"Type"
2113
2118
} ;
2114
2119
2115
- self . report_ambiguous_associated_type (
2120
+ let reported = self . report_ambiguous_associated_type (
2116
2121
span,
2117
2122
type_name,
2118
2123
& path_str,
2119
2124
item_segment. ident . name ,
2120
2125
) ;
2121
- return tcx. ty_error ( ) ;
2126
+ return tcx. ty_error_with_guaranteed ( reported )
2122
2127
} ;
2123
2128
2124
2129
debug ! ( "qpath_to_ty: self_type={:?}" , self_ty) ;
@@ -2560,8 +2565,7 @@ impl<'o, 'tcx> dyn AstConv<'tcx> + 'o {
2560
2565
{
2561
2566
err. span_note ( impl_. self_ty . span , "not a concrete type" ) ;
2562
2567
}
2563
- err. emit ( ) ;
2564
- tcx. ty_error ( )
2568
+ tcx. ty_error_with_guaranteed ( err. emit ( ) )
2565
2569
} else {
2566
2570
self . normalize_ty ( span, ty)
2567
2571
}
0 commit comments