Skip to content

Commit 0cf9370

Browse files
Resolve more
1 parent 0ac93cd commit 0cf9370

File tree

7 files changed

+49
-49
lines changed

7 files changed

+49
-49
lines changed

compiler/rustc_hir_typeck/src/_match.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
5757
// type in that case)
5858
let mut all_arms_diverge = Diverges::WarnedAlways;
5959

60-
let expected = orig_expected.adjust_for_branches(self, expr.span);
60+
let expected =
61+
orig_expected.try_structurally_resolve_and_adjust_for_branches(self, expr.span);
6162
debug!(?expected);
6263

6364
let mut coercion = {

compiler/rustc_hir_typeck/src/expectation.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ impl<'a, 'tcx> Expectation<'tcx> {
3939
// an expected type. Otherwise, we might write parts of the type
4040
// when checking the 'then' block which are incompatible with the
4141
// 'else' branch.
42-
pub(super) fn adjust_for_branches(
42+
pub(super) fn try_structurally_resolve_and_adjust_for_branches(
4343
&self,
4444
fcx: &FnCtxt<'a, 'tcx>,
4545
span: Span,

compiler/rustc_hir_typeck/src/expr.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
625625
expr: &'tcx hir::Expr<'tcx>,
626626
) -> Ty<'tcx> {
627627
let hint = expected.only_has_type(self).map_or(NoExpectation, |ty| {
628-
match ty.kind() {
628+
match self.try_structurally_resolve_type(expr.span, ty).kind() {
629629
ty::Ref(_, ty, _) | ty::RawPtr(ty, _) => {
630630
if oprnd.is_syntactic_place_expr() {
631631
// Places may legitimately have unsized types.
@@ -1290,7 +1290,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
12901290
let cond_diverges = self.diverges.get();
12911291
self.diverges.set(Diverges::Maybe);
12921292

1293-
let expected = orig_expected.adjust_for_branches(self, sp);
1293+
let expected = orig_expected.try_structurally_resolve_and_adjust_for_branches(self, sp);
12941294
let then_ty = self.check_expr_with_expectation(then_expr, expected);
12951295
let then_diverges = self.diverges.get();
12961296
self.diverges.set(Diverges::Maybe);
@@ -1351,8 +1351,8 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
13511351
rhs: &'tcx hir::Expr<'tcx>,
13521352
span: Span,
13531353
) -> Ty<'tcx> {
1354-
let expected_ty = expected.coercion_target_type(self, expr.span);
1355-
if expected_ty == self.tcx.types.bool {
1354+
let expected_ty = expected.only_has_type(self);
1355+
if expected_ty == Some(self.tcx.types.bool) {
13561356
let guar = self.expr_assign_expected_bool_error(expr, lhs, rhs, span);
13571357
return Ty::new_error(self.tcx, guar);
13581358
}
@@ -1636,7 +1636,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
16361636
let element_ty = if !args.is_empty() {
16371637
let coerce_to = expected
16381638
.to_option(self)
1639-
.and_then(|uty| match *uty.kind() {
1639+
.and_then(|uty| match *self.try_structurally_resolve_type(expr.span, uty).kind() {
16401640
ty::Array(ty, _) | ty::Slice(ty) => Some(ty),
16411641
_ => None,
16421642
})

compiler/rustc_hir_typeck/src/fn_ctxt/checks.rs

+7-8
Original file line numberDiff line numberDiff line change
@@ -939,18 +939,17 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
939939
// can be collated pretty easily if needed.
940940

941941
// Next special case: if there is only one "Incompatible" error, just emit that
942-
if let [
942+
if let &[
943943
Error::Invalid(provided_idx, expected_idx, Compatibility::Incompatible(Some(err))),
944944
] = &errors[..]
945945
{
946-
let (formal_ty, expected_ty) = formal_and_expected_inputs[*expected_idx];
947-
let (provided_ty, provided_arg_span) = provided_arg_tys[*provided_idx];
946+
let (formal_ty, expected_ty) = formal_and_expected_inputs[expected_idx];
947+
let (provided_ty, provided_arg_span) = provided_arg_tys[provided_idx];
948948
let trace = mk_trace(provided_arg_span, (formal_ty, expected_ty), provided_ty);
949-
let mut err =
950-
self.err_ctxt().report_and_explain_type_error(trace, self.param_env, *err);
949+
let mut err = self.err_ctxt().report_and_explain_type_error(trace, self.param_env, err);
951950
self.emit_coerce_suggestions(
952951
&mut err,
953-
provided_args[*provided_idx],
952+
provided_args[provided_idx],
954953
provided_ty,
955954
Expectation::rvalue_hint(self, expected_ty)
956955
.only_has_type(self)
@@ -985,7 +984,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
985984
self.suggest_ptr_null_mut(
986985
expected_ty,
987986
provided_ty,
988-
provided_args[*provided_idx],
987+
provided_args[provided_idx],
989988
&mut err,
990989
);
991990

@@ -995,7 +994,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
995994
call_ident,
996995
expected_ty,
997996
provided_ty,
998-
provided_args[*provided_idx],
997+
provided_args[provided_idx],
999998
is_method,
1000999
);
10011000

Original file line numberDiff line numberDiff line change
@@ -1,22 +1,9 @@
1-
error[E0283]: type annotations needed
2-
--> $DIR/auto-trait-selection-freeze.rs:19:16
1+
error[E0284]: type annotations needed: cannot satisfy `impl Sized == _`
2+
--> $DIR/auto-trait-selection-freeze.rs:19:5
33
|
44
LL | if false { is_trait(foo()) } else { Default::default() }
5-
| ^^^^^^^^ ----- type must be known at this point
6-
| |
7-
| cannot infer type of the type parameter `T` declared on the function `is_trait`
8-
|
9-
= note: cannot satisfy `_: Trait<_>`
10-
note: required by a bound in `is_trait`
11-
--> $DIR/auto-trait-selection-freeze.rs:11:16
12-
|
13-
LL | fn is_trait<T: Trait<U>, U: Default>(_: T) -> U {
14-
| ^^^^^^^^ required by this bound in `is_trait`
15-
help: consider specifying the generic arguments
16-
|
17-
LL | if false { is_trait::<T, U>(foo()) } else { Default::default() }
18-
| ++++++++
5+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot satisfy `impl Sized == _`
196

207
error: aborting due to 1 previous error
218

22-
For more information about this error, try `rustc --explain E0283`.
9+
For more information about this error, try `rustc --explain E0284`.
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,9 @@
1-
error[E0283]: type annotations needed
2-
--> $DIR/auto-trait-selection.rs:15:16
1+
error[E0284]: type annotations needed: cannot satisfy `impl Sized == _`
2+
--> $DIR/auto-trait-selection.rs:15:5
33
|
44
LL | if false { is_trait(foo()) } else { Default::default() }
5-
| ^^^^^^^^ ----- type must be known at this point
6-
| |
7-
| cannot infer type of the type parameter `T` declared on the function `is_trait`
8-
|
9-
= note: cannot satisfy `_: Trait<_>`
10-
note: required by a bound in `is_trait`
11-
--> $DIR/auto-trait-selection.rs:7:16
12-
|
13-
LL | fn is_trait<T: Trait<U>, U: Default>(_: T) -> U {
14-
| ^^^^^^^^ required by this bound in `is_trait`
15-
help: consider specifying the generic arguments
16-
|
17-
LL | if false { is_trait::<T, U>(foo()) } else { Default::default() }
18-
| ++++++++
5+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot satisfy `impl Sized == _`
196

207
error: aborting due to 1 previous error
218

22-
For more information about this error, try `rustc --explain E0283`.
9+
For more information about this error, try `rustc --explain E0284`.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
//@ check-pass
2+
//@ compile-flags: -Znext-solver
3+
4+
trait Mirror {
5+
type Assoc;
6+
}
7+
impl<T> Mirror for T {
8+
type Assoc = T;
9+
}
10+
11+
fn id<T>(t: T) -> T { t }
12+
13+
trait Foo {}
14+
impl Foo for i32 {}
15+
impl Foo for u32 {}
16+
17+
fn main() {
18+
// Make sure we resolve expected pointee of addr-of.
19+
id::<<&&dyn Foo as Mirror>::Assoc>(&id(&1));
20+
21+
// Make sure we resolve expected element of array.
22+
id::<<[Box<dyn Foo>; 2] as Mirror>::Assoc>([Box::new(1i32), Box::new(1u32)]);
23+
24+
// Make sure we resolve expected element of tuple.
25+
id::<<(Box<dyn Foo>,) as Mirror>::Assoc>((Box::new(1i32),));
26+
}

0 commit comments

Comments
 (0)