Suggest typo fix for static lifetime
This commit is contained in:
parent
30f168ef81
commit
ac40ea7129
3 changed files with 63 additions and 18 deletions
|
@ -24,7 +24,7 @@ use rustc_hir::def_id::{CRATE_DEF_ID, DefId};
|
|||
use rustc_hir::{MissingLifetimeKind, PrimTy};
|
||||
use rustc_middle::ty;
|
||||
use rustc_session::{Session, lint};
|
||||
use rustc_span::edit_distance::find_best_match_for_name;
|
||||
use rustc_span::edit_distance::{edit_distance, find_best_match_for_name};
|
||||
use rustc_span::edition::Edition;
|
||||
use rustc_span::hygiene::MacroKind;
|
||||
use rustc_span::{DUMMY_SP, Ident, Span, Symbol, kw, sym};
|
||||
|
@ -2874,6 +2874,16 @@ impl<'ast, 'ra: 'ast, 'tcx> LateResolutionVisitor<'_, 'ast, 'ra, 'tcx> {
|
|||
)
|
||||
.with_span_label(lifetime_ref.ident.span, "undeclared lifetime")
|
||||
};
|
||||
|
||||
// Check if this is a typo of `'static`.
|
||||
if edit_distance(lifetime_ref.ident.name.as_str(), "'static", 2).is_some() {
|
||||
err.span_suggestion_verbose(
|
||||
lifetime_ref.ident.span,
|
||||
"you may have misspelled the `'static` lifetime",
|
||||
"'static",
|
||||
Applicability::MachineApplicable,
|
||||
);
|
||||
} else {
|
||||
self.suggest_introducing_lifetime(
|
||||
&mut err,
|
||||
Some(lifetime_ref.ident.name.as_str()),
|
||||
|
@ -2891,6 +2901,8 @@ impl<'ast, 'ra: 'ast, 'tcx> LateResolutionVisitor<'_, 'ast, 'ra, 'tcx> {
|
|||
true
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
err.emit();
|
||||
}
|
||||
|
||||
|
|
7
tests/ui/lifetimes/static-typos.rs
Normal file
7
tests/ui/lifetimes/static-typos.rs
Normal file
|
@ -0,0 +1,7 @@
|
|||
fn stati<T: 'stati>() {}
|
||||
//~^ ERROR use of undeclared lifetime name `'stati`
|
||||
|
||||
fn statoc<T: 'statoc>() {}
|
||||
//~^ ERROR use of undeclared lifetime name `'statoc`
|
||||
|
||||
fn main() {}
|
26
tests/ui/lifetimes/static-typos.stderr
Normal file
26
tests/ui/lifetimes/static-typos.stderr
Normal file
|
@ -0,0 +1,26 @@
|
|||
error[E0261]: use of undeclared lifetime name `'stati`
|
||||
--> $DIR/static-typos.rs:1:13
|
||||
|
|
||||
LL | fn stati<T: 'stati>() {}
|
||||
| ^^^^^^ undeclared lifetime
|
||||
|
|
||||
help: you may have misspelled the `'static` lifetime
|
||||
|
|
||||
LL | fn stati<T: 'static>() {}
|
||||
| +
|
||||
|
||||
error[E0261]: use of undeclared lifetime name `'statoc`
|
||||
--> $DIR/static-typos.rs:4:14
|
||||
|
|
||||
LL | fn statoc<T: 'statoc>() {}
|
||||
| ^^^^^^^ undeclared lifetime
|
||||
|
|
||||
help: you may have misspelled the `'static` lifetime
|
||||
|
|
||||
LL - fn statoc<T: 'statoc>() {}
|
||||
LL + fn statoc<T: 'static>() {}
|
||||
|
|
||||
|
||||
error: aborting due to 2 previous errors
|
||||
|
||||
For more information about this error, try `rustc --explain E0261`.
|
Loading…
Add table
Add a link
Reference in a new issue