@@ -583,27 +583,29 @@ fn receiver_is_dispatchable<'tcx>(
583
583
// create a modified param env, with `Self: Unsize<U>` and `U: Trait` (and all of
584
584
// its supertraits) added to caller bounds. `U: ?Sized` is already implied here.
585
585
let param_env = {
586
- let param_env = tcx. param_env ( method. def_id ) ;
586
+ // N.B. We generally want to emulate the construction of the `unnormalized_param_env`
587
+ // in the param-env query here. The fact that we don't just start with the clauses
588
+ // in the param-env of the method is because those are already normalized, and mixing
589
+ // normalized and unnormalized copies of predicates in `normalize_param_env_or_error`
590
+ // will cause ambiguity that the user can't really avoid.
591
+ let mut predicates = tcx. predicates_of ( method. def_id ) . instantiate_identity ( tcx) . predicates ;
587
592
588
593
// Self: Unsize<U>
589
594
let unsize_predicate =
590
- ty:: TraitRef :: new ( tcx, unsize_did, [ tcx. types . self_param , unsized_self_ty] ) . upcast ( tcx) ;
595
+ ty:: TraitRef :: new ( tcx, unsize_did, [ tcx. types . self_param , unsized_self_ty] ) ;
596
+ predicates. push ( unsize_predicate. upcast ( tcx) ) ;
591
597
592
598
// U: Trait<Arg1, ..., ArgN>
593
- let trait_predicate = {
594
- let trait_def_id = method. trait_container ( tcx) . unwrap ( ) ;
595
- let args = GenericArgs :: for_item ( tcx, trait_def_id, |param, _| {
596
- if param. index == 0 { unsized_self_ty. into ( ) } else { tcx. mk_param_from_def ( param) }
597
- } ) ;
598
-
599
- ty:: TraitRef :: new_from_args ( tcx, trait_def_id, args) . upcast ( tcx)
600
- } ;
599
+ let trait_def_id = method. trait_container ( tcx) . unwrap ( ) ;
600
+ let args = GenericArgs :: for_item ( tcx, trait_def_id, |param, _| {
601
+ if param. index == 0 { unsized_self_ty. into ( ) } else { tcx. mk_param_from_def ( param) }
602
+ } ) ;
603
+ let trait_predicate = ty:: TraitRef :: new_from_args ( tcx, trait_def_id, args) ;
604
+ predicates. push ( trait_predicate. upcast ( tcx) ) ;
601
605
602
606
normalize_param_env_or_error (
603
607
tcx,
604
- ty:: ParamEnv :: new ( tcx. mk_clauses_from_iter (
605
- param_env. caller_bounds ( ) . iter ( ) . chain ( [ unsize_predicate, trait_predicate] ) ,
606
- ) ) ,
608
+ ty:: ParamEnv :: new ( tcx. mk_clauses ( & predicates) ) ,
607
609
ObligationCause :: dummy_with_span ( tcx. def_span ( method. def_id ) ) ,
608
610
)
609
611
} ;
0 commit comments