Skip to content

Commit

Permalink
Mention Both HRTB and Generic Lifetime in E0637 documentation
Browse files Browse the repository at this point in the history
Also, small grammar fix.
  • Loading branch information
veera-sivarajan committed Apr 27, 2024
1 parent 70714e3 commit 26ed429
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions compiler/rustc_error_codes/src/error_codes/E0637.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
`'_` lifetime name or `&T` without an explicit lifetime name has been used
on illegal place.
in an illegal place.

Erroneous code example:

Expand All @@ -13,7 +13,14 @@ fn underscore_lifetime<'_>(str1: &'_ str, str2: &'_ str) -> &'_ str {
}
}
fn and_without_explicit_lifetime<T>()
fn without_explicit_lifetime<T>()
where
T: Iterator<Item = &u32>,
//^ `&` without an explicit lifetime name
{
}
fn without_hrtb<T>()
where
T: Into<&u32>,
//^ `&` without an explicit lifetime name
Expand All @@ -40,9 +47,15 @@ fn underscore_lifetime<'a>(str1: &'a str, str2: &'a str) -> &'a str {
}
}
fn and_without_explicit_lifetime<'foo, T>()
fn without_explicit_lifetime<'a, T>()
where
T: Iterator<Item = &'a u32>,
{
}
fn without_hrtb<T>()
where
T: Into<&'foo u32>,
T: for<'foo> Into<&'foo u32>,
{
}
```
Expand Down

0 comments on commit 26ed429

Please sign in to comment.