summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/generic-associated-types/gats.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc/generic-associated-types/gats.rs')
-rw-r--r--src/test/rustdoc/generic-associated-types/gats.rs33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/test/rustdoc/generic-associated-types/gats.rs b/src/test/rustdoc/generic-associated-types/gats.rs
deleted file mode 100644
index bcead3115..000000000
--- a/src/test/rustdoc/generic-associated-types/gats.rs
+++ /dev/null
@@ -1,33 +0,0 @@
-#![crate_name = "foo"]
-
-// @has foo/trait.LendingIterator.html
-pub trait LendingIterator {
- // @has - '//*[@id="associatedtype.Item"]//h4[@class="code-header"]' "type Item<'a>where Self: 'a"
- type Item<'a> where Self: 'a;
-
- // @has - '//*[@id="tymethod.next"]//h4[@class="code-header"]' \
- // "fn next<'a>(&'a self) -> Self::Item<'a>"
- // @has - '//*[@id="tymethod.next"]//h4[@class="code-header"]//a[@href="trait.LendingIterator.html#associatedtype.Item"]' \
- // "Item"
- fn next<'a>(&'a self) -> Self::Item<'a>;
-}
-
-// @has foo/trait.LendingIterator.html
-// @has - '//*[@id="associatedtype.Item-1"]//h4[@class="code-header"]' "type Item<'a> = ()"
-impl LendingIterator for () {
- type Item<'a> = ();
-
- fn next<'a>(&self) -> () {}
-}
-
-pub struct Infinite<T>(T);
-
-// @has foo/trait.LendingIterator.html
-// @has - '//*[@id="associatedtype.Item-2"]//h4[@class="code-header"]' "type Item<'a>where Self: 'a = &'a T"
-impl<T> LendingIterator for Infinite<T> {
- type Item<'a> where Self: 'a = &'a T;
-
- fn next<'a>(&'a self) -> Self::Item<'a> {
- &self.0
- }
-}