diff options
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/run-make/rustdoc-assoc-types/Makefile | 5 | ||||
| -rw-r--r-- | src/test/run-make/rustdoc-assoc-types/lib.rs | 20 |
2 files changed, 25 insertions, 0 deletions
diff --git a/src/test/run-make/rustdoc-assoc-types/Makefile b/src/test/run-make/rustdoc-assoc-types/Makefile new file mode 100644 index 00000000000..74fca83f5f9 --- /dev/null +++ b/src/test/run-make/rustdoc-assoc-types/Makefile @@ -0,0 +1,5 @@ +-include ../tools.mk + +all: lib.rs + $(HOST_RPATH_ENV) $(RUSTDOC) -w html -o $(TMPDIR)/doc lib.rs + $(HTMLDOCCK) $(TMPDIR)/doc lib.rs diff --git a/src/test/run-make/rustdoc-assoc-types/lib.rs b/src/test/run-make/rustdoc-assoc-types/lib.rs new file mode 100644 index 00000000000..3e6e0ad5600 --- /dev/null +++ b/src/test/run-make/rustdoc-assoc-types/lib.rs @@ -0,0 +1,20 @@ +// Copyright 2015 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +#![crate_type="lib"] + +// @has lib/trait.Index.html +pub trait Index<I: ?Sized> { + // @has - '//*[@id="associatedtype.Output"]//code' 'type Output: ?Sized' + type Output: ?Sized; + // @has - '//*[@id="tymethod.index"]//code' \ + // "fn index<'a>(&'a self, index: I) -> &'a Self::Output" + fn index<'a>(&'a self, index: I) -> &'a Self::Output; +} |
