Skip to content

Commit fef8dac

Browse files
authored
Rollup merge of rust-lang#72137 - GuillaumeGomez:cleanup-e0581, r=Dylan-DPC
Clean up E0581 explanation r? @Dylan-DPC
2 parents c8cae1a + 61fbe57 commit fef8dac

File tree

1 file changed

+6
-3
lines changed
  • src/librustc_error_codes/error_codes

1 file changed

+6
-3
lines changed

src/librustc_error_codes/error_codes/E0581.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
In a `fn` type, a lifetime appears only in the return type,
1+
In a `fn` type, a lifetime appears only in the return type
22
and not in the arguments types.
33

44
Erroneous code example:
@@ -10,8 +10,11 @@ fn main() {
1010
}
1111
```
1212

13-
To fix this issue, either use the lifetime in the arguments, or use
14-
`'static`. Example:
13+
The problem here is that the lifetime isn't contrained by any of the arguments,
14+
making it impossible to determine how long it's supposed to live.
15+
16+
To fix this issue, either use the lifetime in the arguments, or use the
17+
`'static` lifetime. Example:
1518

1619
```
1720
fn main() {

0 commit comments

Comments
 (0)