Skip to content
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

Fix missing lifetimes diagnostics after #83759 #85375

Merged
merged 2 commits into from
May 20, 2021
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
Original file line number Diff line number Diff line change
Expand Up @@ -509,44 +509,23 @@ impl<'a, 'tcx> WrongNumberOfGenericArgs<'a, 'tcx> {
}

AngleBrackets::Available => {
// angle brackets exist, so we insert missing arguments after the existing args

assert!(!self.gen_args.args.is_empty());

if self.num_provided_lifetime_args() > 0 {
let last_lt_arg_span = self.gen_args.args
[self.num_provided_lifetime_args() - 1]
.span()
.shrink_to_hi();
let source_map = self.tcx.sess.source_map();

if let Ok(last_gen_arg) = source_map.span_to_snippet(last_lt_arg_span) {
let sugg = format!("{}, {}", last_gen_arg, suggested_args);

err.span_suggestion_verbose(
last_lt_arg_span,
&msg,
sugg,
Applicability::HasPlaceholders,
);
}
let (sugg_span, is_first) = if self.num_provided_lifetime_args() == 0 {
(self.gen_args.span().unwrap().shrink_to_lo(), true)
} else {
// Non-lifetime arguments included in `gen_args` -> insert missing lifetimes before
// existing arguments
let first_arg_span = self.gen_args.args[0].span().shrink_to_lo();
let source_map = self.tcx.sess.source_map();

if let Ok(first_gen_arg) = source_map.span_to_snippet(first_arg_span) {
let sugg = format!("{}, {}", suggested_args, first_gen_arg);

err.span_suggestion_verbose(
first_arg_span,
&msg,
sugg,
Applicability::HasPlaceholders,
);
}
}
let last_lt = &self.gen_args.args[self.num_provided_lifetime_args() - 1];
(last_lt.span().shrink_to_hi(), false)
};
let has_non_lt_args = self.num_provided_type_or_const_args() != 0;
let has_bindings = !self.gen_args.bindings.is_empty();

let sugg_prefix = if is_first { "" } else { ", " };
let sugg_suffix =
if is_first && (has_non_lt_args || has_bindings) { ", " } else { "" };

let sugg = format!("{}{}{}", sugg_prefix, suggested_args, sugg_suffix);
debug!("sugg: {:?}", sugg);

err.span_suggestion_verbose(sugg_span, &msg, sugg, Applicability::HasPlaceholders);
}
AngleBrackets::Implied => {
// We never encounter missing lifetimes in situations in which lifetimes are elided
Expand Down
10 changes: 10 additions & 0 deletions src/test/ui/suggestions/issue-85347.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#![allow(incomplete_features)]
#![feature(generic_associated_types)]
use std::ops::Deref;
trait Foo {
type Bar<'a>: Deref<Target = <Self>::Bar<Target = Self>>;
//~^ ERROR this associated type takes 1 lifetime argument but 0 lifetime arguments were supplied
//~| HELP add missing
}

fn main() {}
19 changes: 19 additions & 0 deletions src/test/ui/suggestions/issue-85347.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
error[E0107]: this associated type takes 1 lifetime argument but 0 lifetime arguments were supplied
--> $DIR/issue-85347.rs:5:42
|
LL | type Bar<'a>: Deref<Target = <Self>::Bar<Target = Self>>;
| ^^^ expected 1 lifetime argument
|
note: associated type defined here, with 1 lifetime parameter: `'a`
--> $DIR/issue-85347.rs:5:10
|
LL | type Bar<'a>: Deref<Target = <Self>::Bar<Target = Self>>;
| ^^^ --
help: add missing lifetime argument
|
LL | type Bar<'a>: Deref<Target = <Self>::Bar<'a, Target = Self>>;
| ^^^

error: aborting due to previous error

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