Skip to content

fix emit_inference_failure_err ICE #98610

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 17 additions & 6 deletions compiler/rustc_infer/src/infer/error_reporting/need_type_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,6 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
let mut local_visitor = FindInferSourceVisitor::new(&self, typeck_results, arg);
if let Some(body_id) = body_id {
let expr = self.tcx.hir().expect_expr(body_id.hir_id);
debug!(?expr);
local_visitor.visit_expr(expr);
}

Expand Down Expand Up @@ -550,6 +549,7 @@ impl<'tcx> InferSourceKind<'tcx> {
}
}

#[derive(Debug)]
struct InsertableGenericArgs<'tcx> {
insert_span: Span,
substs: SubstsRef<'tcx>,
Expand Down Expand Up @@ -735,10 +735,20 @@ impl<'a, 'tcx> FindInferSourceVisitor<'a, 'tcx> {
return self.path_inferred_subst_iter(expr.hir_id, substs, path);
}
}
hir::ExprKind::Struct(path, _, _) => {
// FIXME(#98711): Ideally we would also deal with type relative
// paths here, even if that is quite rare.
//
// See the `need_type_info/expr-struct-type-relative-gat.rs` test
// for an example where that would be needed.
//
// However, the `type_dependent_def_id` for `Self::Output` in an
// impl is currently the `DefId` of `Output` in the trait definition
// which makes this somewhat difficult and prevents us from just
// using `self.path_inferred_subst_iter` here.
hir::ExprKind::Struct(&hir::QPath::Resolved(_self_ty, path), _, _) => {
if let Some(ty) = self.opt_node_type(expr.hir_id) {
if let ty::Adt(_, substs) = ty.kind() {
return self.path_inferred_subst_iter(expr.hir_id, substs, path);
return Box::new(self.resolved_path_inferred_subst_iter(path, substs));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Given the filtering above, this change isn't also needed, right?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it isn't strictly needed, but it feels weird to call path_inferred_subst_iter if we already know that we're only dealing with resolved paths.

}
}
}
Expand Down Expand Up @@ -945,6 +955,7 @@ impl<'a, 'tcx> Visitor<'tcx> for FindInferSourceVisitor<'a, 'tcx> {
intravisit::walk_body(self, body);
}

#[instrument(level = "debug", skip(self))]
fn visit_expr(&mut self, expr: &'tcx Expr<'tcx>) {
let tcx = self.infcx.tcx;
match expr.kind {
Expand All @@ -959,9 +970,9 @@ impl<'a, 'tcx> Visitor<'tcx> for FindInferSourceVisitor<'a, 'tcx> {
_ => intravisit::walk_expr(self, expr),
}

for InsertableGenericArgs { insert_span, substs, generics_def_id, def_id } in
self.expr_inferred_subst_iter(expr)
{
for args in self.expr_inferred_subst_iter(expr) {
debug!(?args);
let InsertableGenericArgs { insert_span, substs, generics_def_id, def_id } = args;
let generics = tcx.generics_of(generics_def_id);
if let Some(argument_index) =
generics.own_substs(substs).iter().position(|&arg| self.generic_arg_is_target(arg))
Expand Down
3 changes: 2 additions & 1 deletion compiler/rustc_typeck/src/check/fn_ctxt/_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
self.typeck_results.borrow_mut().field_indices_mut().insert(hir_id, index);
}

#[instrument(level = "debug", skip(self))]
pub(in super::super) fn write_resolution(
&self,
hir_id: hir::HirId,
Expand All @@ -164,8 +165,8 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
self.typeck_results.borrow_mut().type_dependent_defs_mut().insert(hir_id, r);
}

#[instrument(level = "debug", skip(self))]
pub fn write_method_call(&self, hir_id: hir::HirId, method: MethodCallee<'tcx>) {
debug!("write_method_call(hir_id={:?}, method={:?})", hir_id, method);
self.write_resolution(hir_id, Ok((DefKind::AssocFn, method.def_id)));
self.write_substs(hir_id, method.substs);

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
trait Foo {
type Output;

fn baz() -> Self::Output;
}

fn needs_infer<T>() {}

enum Bar {
Variant {}
}

impl Foo for u8 {
type Output = Bar;
fn baz() -> Self::Output {
needs_infer(); //~ ERROR type annotations needed
Self::Output::Variant {}
}
}

fn main() {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
error[E0282]: type annotations needed
--> $DIR/expr-struct-type-relative-enum.rs:16:9
|
LL | needs_infer();
| ^^^^^^^^^^^ cannot infer type of the type parameter `T` declared on the function `needs_infer`
|
help: consider specifying the generic argument
|
LL | needs_infer::<T>();
| +++++

error: aborting due to previous error

For more information about this error, try `rustc --explain E0282`.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#![feature(generic_associated_types)]

trait Foo {
type Output<T>;

fn baz();
}

enum Bar<T> {
Simple {},
Generic(T),
}

impl Foo for u8 {
type Output<T> = Bar<T>;
fn baz() {
Self::Output::Simple {}; //~ ERROR type annotations needed
}
}

fn main() {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
error[E0282]: type annotations needed
--> $DIR/expr-struct-type-relative-gat.rs:17:9
|
LL | Self::Output::Simple {};
| ^^^^^^^^^^^^ cannot infer type for type parameter `T` declared on the associated type `Output`
Comment on lines +1 to +5
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should point at Output as well.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what exactly do you mean with this? This should suggest Self::Output::<T> but that's part of the FIXME i've added

Copy link
Contributor

@estebank estebank Jul 1, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I meant something like

error[E0282]: type annotations needed
  --> $DIR/expr-struct-type-relative-gat.rs:17:9
   |
LL |     type Output<T> = Bar<T>;
   |                 - type parameter `T` that couldn't be infered on `Output`
LL |     fn baz() {
LL |         Self::Output::Simple {};
   |         ^^^^^^^^^^^^ cannot infer type for type parameter `T` declared on the associated type `Output`

as a stop gap solution, but ideally all of this would look like this

error[E0282]: type annotations needed
  --> $DIR/expr-struct-type-relative-gat.rs:17:9
   |
LL |     type Output<T> = Bar<T>;
   |                 - type parameter `T` that couldn't be infered on `Output`
LL |     fn baz() {
LL |         Self::Output::Simple {};
   |         ^^^^^^^^^^^^ cannot infer type for type parameter `T` declared on the associated type `Output`
help: specify the type parameter on associated type `Output` 
   |
LL |         Self::Output::<T>::Simple {};
   |                     +++++

Edit: although thinking about it for a second, maybe we should suggest other forms, like adding a param to baz and passing that through, I'm not sure about how GATs will actually be used in the wild to get a sense of what the appropriate suggestion might actually be.


error: aborting due to previous error

For more information about this error, try `rustc --explain E0282`.
21 changes: 21 additions & 0 deletions src/test/ui/inference/need_type_info/expr-struct-type-relative.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// regression test for #98598

trait Foo {
type Output;

fn baz() -> Self::Output;
}

fn needs_infer<T>() {}

struct Bar {}

impl Foo for u8 {
type Output = Bar;
fn baz() -> Self::Output {
needs_infer(); //~ ERROR type annotations needed
Self::Output {}
}
}

fn main() {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
error[E0282]: type annotations needed
--> $DIR/expr-struct-type-relative.rs:16:9
|
LL | needs_infer();
| ^^^^^^^^^^^ cannot infer type of the type parameter `T` declared on the function `needs_infer`
|
help: consider specifying the generic argument
|
LL | needs_infer::<T>();
| +++++

error: aborting due to previous error

For more information about this error, try `rustc --explain E0282`.