diff options
| author | Guillaume Gomez <guillaume.gomez@huawei.com> | 2022-06-08 14:26:37 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume.gomez@huawei.com> | 2022-06-08 14:26:37 +0200 |
| commit | e846c523e4604aef5ce8085c583622f1444bda39 (patch) | |
| tree | 3c0679a816d8bb87293f9ed58615bb51066bef8d | |
| parent | 79b6bad406155cad4481150fc5dfa0da5394e3b6 (diff) | |
| download | rust-e846c523e4604aef5ce8085c583622f1444bda39.tar.gz rust-e846c523e4604aef5ce8085c583622f1444bda39.zip | |
Add regression test for #84634
| -rw-r--r-- | src/test/rustdoc/anonymous-lifetime.rs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/test/rustdoc/anonymous-lifetime.rs b/src/test/rustdoc/anonymous-lifetime.rs new file mode 100644 index 00000000000..f5a7d225847 --- /dev/null +++ b/src/test/rustdoc/anonymous-lifetime.rs @@ -0,0 +1,28 @@ +// Regression test for https://github.com/rust-lang/rust/issues/84634 +#![crate_name = "foo"] + +use std::pin::Pin; +use std::task::Poll; + +pub trait Stream { + type Item; + + fn poll_next(mut self: Pin<&mut Self>) -> Poll<Option<Self::Item>>; + fn size_hint(&self) -> (usize, Option<usize>); +} + +// @has 'foo/trait.Stream.html' +// @has - '//*[@class="code-header in-band"]' 'impl<S: ?Sized + Stream + Unpin> Stream for &mut S' +impl<S: ?Sized + Stream + Unpin> Stream for &mut S { + type Item = S::Item; + + fn poll_next( + mut self: Pin<&mut Self>, + ) -> Poll<Option<Self::Item>> { + S::poll_next(Pin::new(&mut **self), cx) + } + + fn size_hint(&self) -> (usize, Option<usize>) { + (**self).size_hint() + } +} |
