File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -1411,8 +1411,10 @@ impl<'o, 'tcx> dyn AstConv<'tcx> + 'o {
1411
1411
// `dyn Trait + Send`.
1412
1412
auto_traits. sort_by_key ( |i| i. def_id ( ) ) ;
1413
1413
auto_traits. dedup_by_key ( |i| i. def_id ( ) ) ;
1414
- debug ! ( "regular_traits: {:?}" , regular_traits) ;
1415
- debug ! ( "auto_traits: {:?}" , auto_traits) ;
1414
+ debug ! (
1415
+ "conv_object_ty_poly_trait_ref: regular_traits={:?} auto_traits={:?}" ,
1416
+ regular_traits, auto_traits
1417
+ ) ;
1416
1418
1417
1419
// Transform a `PolyTraitRef` into a `PolyExistentialTraitRef` by
1418
1420
// removing the dummy `Self` type (`trait_object_dummy_self`).
@@ -1473,10 +1475,10 @@ impl<'o, 'tcx> dyn AstConv<'tcx> + 'o {
1473
1475
}
1474
1476
} )
1475
1477
} ;
1476
- debug ! ( "region_bound: {:?}" , region_bound) ;
1478
+ debug ! ( "conv_object_ty_poly_trait_ref: region_bound= {:?}" , region_bound) ;
1477
1479
1478
1480
let ty = tcx. mk_dynamic ( existential_predicates, region_bound) ;
1479
- debug ! ( "trait_object_type: {:?}" , ty) ;
1481
+ debug ! ( "conv_object_ty_poly_trait_ref: trait_object_type= {:?}" , ty) ;
1480
1482
ty
1481
1483
}
1482
1484
You can’t perform that action at this time.
0 commit comments