diff options
| author | Ali MJ Al-Nasrawy <alimjalnasrawy@gmail.com> | 2023-10-08 10:06:17 +0000 |
|---|---|---|
| committer | Ali MJ Al-Nasrawy <alimjalnasrawy@gmail.com> | 2023-10-08 10:06:17 +0000 |
| commit | a8830631b9446c8b48cd4eba1ef448eb5a258cdc (patch) | |
| tree | d5caa0da3bd6cdd6ad7d2893de213e331815855e /tests/ui/async-await/in-trait/async-generics-and-bounds.stderr | |
| parent | 996ffcb718941fc36ec5fdee38ed99ce20ec06d5 (diff) | |
| download | rust-a8830631b9446c8b48cd4eba1ef448eb5a258cdc.tar.gz rust-a8830631b9446c8b48cd4eba1ef448eb5a258cdc.zip | |
remove trailing dots
Diffstat (limited to 'tests/ui/async-await/in-trait/async-generics-and-bounds.stderr')
| -rw-r--r-- | tests/ui/async-await/in-trait/async-generics-and-bounds.stderr | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/async-await/in-trait/async-generics-and-bounds.stderr b/tests/ui/async-await/in-trait/async-generics-and-bounds.stderr index 902a2876da6..965c385e9bc 100644 --- a/tests/ui/async-await/in-trait/async-generics-and-bounds.stderr +++ b/tests/ui/async-await/in-trait/async-generics-and-bounds.stderr @@ -7,7 +7,7 @@ LL | async fn foo(&self) -> &(T, U) where T: Debug + Sized, U: Hash; | | the parameter type `U` must be valid for the anonymous lifetime as defined here... | ...so that the reference type `&(T, U)` does not outlive the data it points at | -help: consider adding an explicit lifetime bound... +help: consider adding an explicit lifetime bound | LL | async fn foo<'a>(&'a self) -> &'a (T, U) where T: Debug + Sized, U: Hash, U: 'a; | ++++ ++ ++ +++++++ @@ -21,7 +21,7 @@ LL | async fn foo(&self) -> &(T, U) where T: Debug + Sized, U: Hash; | | the parameter type `T` must be valid for the anonymous lifetime as defined here... | ...so that the reference type `&(T, U)` does not outlive the data it points at | -help: consider adding an explicit lifetime bound... +help: consider adding an explicit lifetime bound | LL | async fn foo<'a>(&'a self) -> &'a (T, U) where T: Debug + Sized, U: Hash, T: 'a; | ++++ ++ ++ +++++++ |
