summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/assoc-types.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc/assoc-types.rs')
-rw-r--r--src/test/rustdoc/assoc-types.rs37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/test/rustdoc/assoc-types.rs b/src/test/rustdoc/assoc-types.rs
deleted file mode 100644
index a9e5b8d00..000000000
--- a/src/test/rustdoc/assoc-types.rs
+++ /dev/null
@@ -1,37 +0,0 @@
-#![crate_type="lib"]
-
-// @has assoc_types/trait.Index.html
-pub trait Index<I: ?Sized> {
- // @has - '//*[@id="associatedtype.Output"]//h4[@class="code-header"]' 'type Output: ?Sized'
- type Output: ?Sized;
- // @has - '//*[@id="tymethod.index"]//h4[@class="code-header"]' \
- // "fn index<'a>(&'a self, index: I) -> &'a Self::Output"
- // @has - '//*[@id="tymethod.index"]//h4[@class="code-header"]//a[@href="trait.Index.html#associatedtype.Output"]' \
- // "Output"
- fn index<'a>(&'a self, index: I) -> &'a Self::Output;
-}
-
-// @has assoc_types/fn.use_output.html
-// @has - '//*[@class="rust fn"]' '-> &T::Output'
-// @has - '//*[@class="rust fn"]//a[@href="trait.Index.html#associatedtype.Output"]' 'Output'
-pub fn use_output<T: Index<usize>>(obj: &T, index: usize) -> &T::Output {
- obj.index(index)
-}
-
-pub trait Feed {
- type Input;
-}
-
-// @has assoc_types/fn.use_input.html
-// @has - '//*[@class="rust fn"]' 'T::Input'
-// @has - '//*[@class="rust fn"]//a[@href="trait.Feed.html#associatedtype.Input"]' 'Input'
-pub fn use_input<T: Feed>(_feed: &T, _element: T::Input) { }
-
-// @has assoc_types/fn.cmp_input.html
-// @has - '//*[@class="rust fn"]' 'where T::Input: PartialEq<U::Input>'
-// @has - '//*[@class="rust fn"]//a[@href="trait.Feed.html#associatedtype.Input"]' 'Input'
-pub fn cmp_input<T: Feed, U: Feed>(a: &T::Input, b: &U::Input) -> bool
- where T::Input: PartialEq<U::Input>
-{
- a == b
-}