@@ -4809,9 +4809,9 @@ impl<'a, 'gcx, 'tcx> FnCtxt<'a, 'gcx, 'tcx> {
4809
4809
// variables. If the user provided some types, we may still need
4810
4810
// to add defaults. If the user provided *too many* types, that's
4811
4811
// a problem.
4812
- self . check_path_parameter_count ( span, & mut type_segment , false ) ;
4813
- self . check_path_parameter_count ( span, & mut fn_segment , false ) ;
4814
- self . check_impl_trait ( span, & mut fn_segment) ;
4812
+ let supress_mismatch = self . check_impl_trait ( span, & mut fn_segment ) ;
4813
+ self . check_path_parameter_count ( span, & mut type_segment , false , supress_mismatch ) ;
4814
+ self . check_path_parameter_count ( span, & mut fn_segment, false , supress_mismatch ) ;
4815
4815
4816
4816
let ( fn_start, has_self) = match ( type_segment, fn_segment) {
4817
4817
( _, Some ( ( _, generics) ) ) => {
@@ -4964,7 +4964,8 @@ impl<'a, 'gcx, 'tcx> FnCtxt<'a, 'gcx, 'tcx> {
4964
4964
fn check_path_parameter_count ( & self ,
4965
4965
span : Span ,
4966
4966
segment : & mut Option < ( & hir:: PathSegment , & ty:: Generics ) > ,
4967
- is_method_call : bool ) {
4967
+ is_method_call : bool ,
4968
+ supress_mismatch_error : bool ) {
4968
4969
let ( lifetimes, types, infer_types, bindings) = segment. map_or (
4969
4970
( & [ ] [ ..] , & [ ] [ ..] , true , & [ ] [ ..] ) ,
4970
4971
|( s, _) | s. parameters . as_ref ( ) . map_or (
@@ -5004,7 +5005,7 @@ impl<'a, 'gcx, 'tcx> FnCtxt<'a, 'gcx, 'tcx> {
5004
5005
// type parameters, we force instantiate_value_path to
5005
5006
// use inference variables instead of the provided types.
5006
5007
* segment = None ;
5007
- } else if types. len ( ) < required_len && !infer_types {
5008
+ } else if types. len ( ) < required_len && !infer_types && !supress_mismatch_error {
5008
5009
let expected_text = count_type_params ( required_len) ;
5009
5010
let actual_text = count_type_params ( types. len ( ) ) ;
5010
5011
struct_span_err ! ( self . tcx. sess, span, E0089 ,
@@ -5071,10 +5072,11 @@ impl<'a, 'gcx, 'tcx> FnCtxt<'a, 'gcx, 'tcx> {
5071
5072
/// Report error if there is an explicit type parameter when using `impl Trait`.
5072
5073
fn check_impl_trait ( & self ,
5073
5074
span : Span ,
5074
- segment : & mut Option < ( & hir:: PathSegment , & ty:: Generics ) > ) {
5075
+ segment : & mut Option < ( & hir:: PathSegment , & ty:: Generics ) > )
5076
+ -> bool {
5075
5077
use hir:: SyntheticTyParamKind :: * ;
5076
5078
5077
- segment. map ( |( path_segment, generics) | {
5079
+ let segment = segment. map ( |( path_segment, generics) | {
5078
5080
let explicit = !path_segment. infer_types ;
5079
5081
let impl_trait = generics. types . iter ( )
5080
5082
. any ( |ty_param| {
@@ -5095,7 +5097,11 @@ impl<'a, 'gcx, 'tcx> FnCtxt<'a, 'gcx, 'tcx> {
5095
5097
5096
5098
err. emit ( ) ;
5097
5099
}
5100
+
5101
+ impl_trait
5098
5102
} ) ;
5103
+
5104
+ segment. unwrap_or ( false )
5099
5105
}
5100
5106
5101
5107
// Resolves `typ` by a single level if `typ` is a type variable.
0 commit comments