@@ -242,7 +242,8 @@ pub struct InferCtxt<'tcx> {
242
242
/// short lived InferCtxt within queries. The opaque type obligations are forwarded
243
243
/// to the outside until the end up in an `InferCtxt` for typeck or borrowck.
244
244
///
245
- /// Its default value is `DefiningAnchor::Error`, this way it is easier to catch errors that
245
+ /// Its default value is `DefiningAnchor::Bind(&[])`, which means no opaque types may be defined.
246
+ /// This way it is easier to catch errors that
246
247
/// might come up during inference or typeck.
247
248
pub defining_use_anchor : DefiningAnchor < ' tcx > ,
248
249
@@ -620,7 +621,7 @@ impl<'tcx> TyCtxt<'tcx> {
620
621
fn infer_ctxt ( self ) -> InferCtxtBuilder < ' tcx > {
621
622
InferCtxtBuilder {
622
623
tcx : self ,
623
- defining_use_anchor : DefiningAnchor :: Error ,
624
+ defining_use_anchor : DefiningAnchor :: Bind ( ty :: List :: empty ( ) ) ,
624
625
considering_regions : true ,
625
626
skip_leak_check : false ,
626
627
intercrate : false ,
@@ -1208,13 +1209,11 @@ impl<'tcx> InferCtxt<'tcx> {
1208
1209
1209
1210
#[ instrument( level = "debug" , skip( self ) , ret) ]
1210
1211
pub fn take_opaque_types ( & self ) -> opaque_types:: OpaqueTypeMap < ' tcx > {
1211
- debug_assert_ne ! ( self . defining_use_anchor, DefiningAnchor :: Error ) ;
1212
1212
std:: mem:: take ( & mut self . inner . borrow_mut ( ) . opaque_type_storage . opaque_types )
1213
1213
}
1214
1214
1215
1215
#[ instrument( level = "debug" , skip( self ) , ret) ]
1216
1216
pub fn clone_opaque_types ( & self ) -> opaque_types:: OpaqueTypeMap < ' tcx > {
1217
- debug_assert_ne ! ( self . defining_use_anchor, DefiningAnchor :: Error ) ;
1218
1217
self . inner . borrow ( ) . opaque_type_storage . opaque_types . clone ( )
1219
1218
}
1220
1219
0 commit comments