Skip to content

Commit b7248c7

Browse files
authored
Unrolled build for rust-lang#120148
Rollup merge of rust-lang#120148 - trevyn:issue-117965, r=cjgillot `single_use_lifetimes`: Don't suggest deleting lifetimes with bounds Closes rust-lang#117965 ``` 9 | pub fn get<'b: 'a>(&'b self) -> &'a str { | ^^ -- ...is used only here | | | this lifetime... ``` In this example, I think the `&'b self` can be replaced with the bound itself, yielding `&'a self`, but this would require a deeper refactor. Happy to do as a follow-on PR if desired.
2 parents 5378c1c + de2575f commit b7248c7

File tree

3 files changed

+36
-1
lines changed

3 files changed

+36
-1
lines changed

compiler/rustc_resolve/src/late/diagnostics.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -2567,8 +2567,9 @@ impl<'a: 'ast, 'ast, 'tcx> LateResolutionVisitor<'a, '_, 'ast, 'tcx> {
25672567
debug!(?param.ident, ?param.ident.span, ?use_span);
25682568

25692569
let elidable = matches!(use_ctxt, LifetimeCtxt::Ref);
2570+
let deletion_span =
2571+
if param.bounds.is_empty() { deletion_span() } else { None };
25702572

2571-
let deletion_span = deletion_span();
25722573
self.r.lint_buffer.buffer_lint_with_diagnostic(
25732574
lint::builtin::SINGLE_USE_LIFETIMES,
25742575
param.id,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#![deny(single_use_lifetimes)]
2+
3+
pub enum Data<'a> {
4+
Borrowed(&'a str),
5+
Owned(String),
6+
}
7+
8+
impl<'a> Data<'a> {
9+
pub fn get<'b: 'a>(&'b self) -> &'a str {
10+
//~^ ERROR lifetime parameter `'b` only used once
11+
match &self {
12+
Self::Borrowed(val) => val,
13+
Self::Owned(val) => &val,
14+
}
15+
}
16+
}
17+
18+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
error: lifetime parameter `'b` only used once
2+
--> $DIR/issue-117965.rs:9:16
3+
|
4+
LL | pub fn get<'b: 'a>(&'b self) -> &'a str {
5+
| ^^ -- ...is used only here
6+
| |
7+
| this lifetime...
8+
|
9+
note: the lint level is defined here
10+
--> $DIR/issue-117965.rs:1:9
11+
|
12+
LL | #![deny(single_use_lifetimes)]
13+
| ^^^^^^^^^^^^^^^^^^^^
14+
15+
error: aborting due to 1 previous error
16+

0 commit comments

Comments
 (0)