|
| 1 | +// ignore-tidy-linelength |
1 | 2 | // edition:2018
|
2 | 3 | #![feature(min_const_generics)]
|
3 | 4 |
|
@@ -48,7 +49,50 @@ impl Foo {
|
48 | 49 | pub async fn mut_self(mut self, mut first: usize) {}
|
49 | 50 | }
|
50 | 51 |
|
| 52 | +pub trait Pattern<'a> {} |
| 53 | + |
51 | 54 | pub trait Trait<const N: usize> {}
|
52 | 55 | // @has async_fn/fn.const_generics.html
|
53 | 56 | // @has - '//pre[@class="rust fn"]' 'pub async fn const_generics<const N: usize>(_: impl Trait<N>)'
|
54 | 57 | pub async fn const_generics<const N: usize>(_: impl Trait<N>) {}
|
| 58 | + |
| 59 | +// test that elided lifetimes are properly elided and not displayed as `'_` |
| 60 | +// regression test for #63037 |
| 61 | +// @has async_fn/fn.elided.html |
| 62 | +// @has - '//pre[@class="rust fn"]' 'pub async fn elided(foo: &str) -> &str' |
| 63 | +pub async fn elided(foo: &str) -> &str {} |
| 64 | +// This should really be shown as written, but for implementation reasons it's difficult. |
| 65 | +// See `impl Clean for TyKind::Rptr`. |
| 66 | +// @has async_fn/fn.user_elided.html |
| 67 | +// @has - '//pre[@class="rust fn"]' 'pub async fn user_elided(foo: &str) -> &str' |
| 68 | +pub async fn user_elided(foo: &'_ str) -> &str {} |
| 69 | +// @has async_fn/fn.static_trait.html |
| 70 | +// @has - '//pre[@class="rust fn"]' 'pub async fn static_trait(foo: &str) -> Box<dyn Bar>' |
| 71 | +pub async fn static_trait(foo: &str) -> Box<dyn Bar> {} |
| 72 | +// @has async_fn/fn.lifetime_for_trait.html |
| 73 | +// @has - '//pre[@class="rust fn"]' "pub async fn lifetime_for_trait(foo: &str) -> Box<dyn Bar + '_>" |
| 74 | +pub async fn lifetime_for_trait(foo: &str) -> Box<dyn Bar + '_> {} |
| 75 | +// @has async_fn/fn.elided_in_input_trait.html |
| 76 | +// @has - '//pre[@class="rust fn"]' "pub async fn elided_in_input_trait(t: impl Pattern<'_>)" |
| 77 | +pub async fn elided_in_input_trait(t: impl Pattern<'_>) {} |
| 78 | + |
| 79 | +struct AsyncFdReadyGuard<'a, T> { x: &'a T } |
| 80 | + |
| 81 | +impl Foo { |
| 82 | + // @has async_fn/struct.Foo.html |
| 83 | + // @has - '//h4[@class="method"]' 'pub async fn complicated_lifetimes( &self, context: &impl Bar) -> impl Iterator<Item = &usize>' |
| 84 | + pub async fn complicated_lifetimes(&self, context: &impl Bar) -> impl Iterator<Item = &usize> {} |
| 85 | + // taken from `tokio` as an example of a method that was particularly bad before |
| 86 | + // @has - '//h4[@class="method"]' "pub async fn readable<T>(&self) -> Result<AsyncFdReadyGuard<'_, T>, ()>" |
| 87 | + pub async fn readable<T>(&self) -> Result<AsyncFdReadyGuard<'_, T>, ()> {} |
| 88 | + // @has - '//h4[@class="method"]' "pub async fn mut_self(&mut self)" |
| 89 | + pub async fn mut_self(&mut self) {} |
| 90 | +} |
| 91 | + |
| 92 | +// test named lifetimes, just in case |
| 93 | +// @has async_fn/fn.named.html |
| 94 | +// @has - '//pre[@class="rust fn"]' "pub async fn named<'a, 'b>(foo: &'a str) -> &'b str" |
| 95 | +pub async fn named<'a, 'b>(foo: &'a str) -> &'b str {} |
| 96 | +// @has async_fn/fn.named_trait.html |
| 97 | +// @has - '//pre[@class="rust fn"]' "pub async fn named_trait<'a, 'b>(foo: impl Pattern<'a>) -> impl Pattern<'b>" |
| 98 | +pub async fn named_trait<'a, 'b>(foo: impl Pattern<'a>) -> impl Pattern<'b> {} |
0 commit comments