Skip to content

Commit 4bf76d6

Browse files
committed
Auto merge of #48709 - tinaun:issue48703, r=nikomatsakis
remove erroneous error message when checking impl trait params fixes #48703
2 parents 3b1fa86 + 97e0dc3 commit 4bf76d6

File tree

4 files changed

+42
-8
lines changed

4 files changed

+42
-8
lines changed

src/librustc_typeck/check/method/confirm.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ impl<'a, 'gcx, 'tcx> ConfirmContext<'a, 'gcx, 'tcx> {
310310
// variables.
311311
let method_generics = self.tcx.generics_of(pick.item.def_id);
312312
let mut fn_segment = Some((segment, method_generics));
313-
self.fcx.check_path_parameter_count(self.span, &mut fn_segment, true);
313+
self.fcx.check_path_parameter_count(self.span, &mut fn_segment, true, false);
314314

315315
// Create subst for early-bound lifetime parameters, combining
316316
// parameters from the type and those from the method.

src/librustc_typeck/check/mod.rs

+13-7
Original file line numberDiff line numberDiff line change
@@ -4809,9 +4809,9 @@ impl<'a, 'gcx, 'tcx> FnCtxt<'a, 'gcx, 'tcx> {
48094809
// variables. If the user provided some types, we may still need
48104810
// to add defaults. If the user provided *too many* types, that's
48114811
// 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);
48154815

48164816
let (fn_start, has_self) = match (type_segment, fn_segment) {
48174817
(_, Some((_, generics))) => {
@@ -4964,7 +4964,8 @@ impl<'a, 'gcx, 'tcx> FnCtxt<'a, 'gcx, 'tcx> {
49644964
fn check_path_parameter_count(&self,
49654965
span: Span,
49664966
segment: &mut Option<(&hir::PathSegment, &ty::Generics)>,
4967-
is_method_call: bool) {
4967+
is_method_call: bool,
4968+
supress_mismatch_error: bool) {
49684969
let (lifetimes, types, infer_types, bindings) = segment.map_or(
49694970
(&[][..], &[][..], true, &[][..]),
49704971
|(s, _)| s.parameters.as_ref().map_or(
@@ -5004,7 +5005,7 @@ impl<'a, 'gcx, 'tcx> FnCtxt<'a, 'gcx, 'tcx> {
50045005
// type parameters, we force instantiate_value_path to
50055006
// use inference variables instead of the provided types.
50065007
*segment = None;
5007-
} else if types.len() < required_len && !infer_types {
5008+
} else if types.len() < required_len && !infer_types && !supress_mismatch_error {
50085009
let expected_text = count_type_params(required_len);
50095010
let actual_text = count_type_params(types.len());
50105011
struct_span_err!(self.tcx.sess, span, E0089,
@@ -5071,10 +5072,11 @@ impl<'a, 'gcx, 'tcx> FnCtxt<'a, 'gcx, 'tcx> {
50715072
/// Report error if there is an explicit type parameter when using `impl Trait`.
50725073
fn check_impl_trait(&self,
50735074
span: Span,
5074-
segment: &mut Option<(&hir::PathSegment, &ty::Generics)>) {
5075+
segment: &mut Option<(&hir::PathSegment, &ty::Generics)>)
5076+
-> bool {
50755077
use hir::SyntheticTyParamKind::*;
50765078

5077-
segment.map(|(path_segment, generics)| {
5079+
let segment = segment.map(|(path_segment, generics)| {
50785080
let explicit = !path_segment.infer_types;
50795081
let impl_trait = generics.types.iter()
50805082
.any(|ty_param| {
@@ -5095,7 +5097,11 @@ impl<'a, 'gcx, 'tcx> FnCtxt<'a, 'gcx, 'tcx> {
50955097

50965098
err.emit();
50975099
}
5100+
5101+
impl_trait
50985102
});
5103+
5104+
segment.unwrap_or(false)
50995105
}
51005106

51015107
// Resolves `typ` by a single level if `typ` is a type variable.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
#![feature(universal_impl_trait)]
12+
13+
use std::fmt::Debug;
14+
15+
fn foo<T>(x: impl Debug) { }
16+
17+
fn main() {
18+
foo::<String>('a'); //~ ERROR cannot provide explicit type parameters
19+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
error[E0632]: cannot provide explicit type parameters when `impl Trait` is used in argument position.
2+
--> $DIR/universal-issue-48703.rs:18:5
3+
|
4+
LL | foo::<String>('a'); //~ ERROR cannot provide explicit type parameters
5+
| ^^^^^^^^^^^^^
6+
7+
error: aborting due to previous error
8+
9+
For more information about this error, try `rustc --explain E0632`.

0 commit comments

Comments
 (0)