We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c8cae1a + 61fbe57 commit fef8dacCopy full SHA for fef8dac
src/librustc_error_codes/error_codes/E0581.md
@@ -1,4 +1,4 @@
1
-In a `fn` type, a lifetime appears only in the return type,
+In a `fn` type, a lifetime appears only in the return type
2
and not in the arguments types.
3
4
Erroneous code example:
@@ -10,8 +10,11 @@ fn main() {
10
}
11
```
12
13
-To fix this issue, either use the lifetime in the arguments, or use
14
-`'static`. Example:
+The problem here is that the lifetime isn't contrained by any of the arguments,
+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:
18
19
20
fn main() {
0 commit comments