Skip to content

Commit 0943a6b

Browse files
committed
add test issue-117965
1 parent 88189a7 commit 0943a6b

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed
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,21 @@
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+
help: elide the single-use lifetime
15+
|
16+
LL - pub fn get<'b: 'a>(&'b self) -> &'a str {
17+
LL + pub fn get(&self) -> &'a str {
18+
|
19+
20+
error: aborting due to 1 previous error
21+

0 commit comments

Comments
 (0)