summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/issue-56822.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc/issue-56822.rs')
-rw-r--r--src/test/rustdoc/issue-56822.rs24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/test/rustdoc/issue-56822.rs b/src/test/rustdoc/issue-56822.rs
deleted file mode 100644
index b4eef344b..000000000
--- a/src/test/rustdoc/issue-56822.rs
+++ /dev/null
@@ -1,24 +0,0 @@
-struct Wrapper<T>(T);
-
-trait MyTrait {
- type Output;
-}
-
-impl<'a, I, T: 'a> MyTrait for Wrapper<I>
- where I: MyTrait<Output=&'a T>
-{
- type Output = T;
-}
-
-struct Inner<'a, T>(&'a T);
-
-impl<'a, T> MyTrait for Inner<'a, T> {
- type Output = &'a T;
-}
-
-// @has issue_56822/struct.Parser.html
-// @has - '//*[@id="synthetic-implementations-list"]//*[@class="impl has-srclink"]//h3[@class="code-header"]' \
-// "impl<'a> Send for Parser<'a>"
-pub struct Parser<'a> {
- field: <Wrapper<Inner<'a, u8>> as MyTrait>::Output
-}