]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/issue-20727-4.rs
Auto merge of #22681 - mzabaluev:extend-faster, r=huonw
[rust.git] / src / test / rustdoc / issue-20727-4.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // aux-build:issue-20727.rs
12 // ignore-cross-compile
13
14 extern crate issue_20727;
15
16 // @has issue_20727_4/trait.Index.html
17 pub trait Index<Idx: ?Sized> {
18     // @has - '//*[@class="rust trait"]' 'trait Index<Idx: ?Sized> {'
19     // @has - '//*[@class="rust trait"]' 'type Output: ?Sized'
20     type Output: ?Sized;
21
22     // @has - '//*[@class="rust trait"]' \
23     //        'fn index(&self, index: Idx) -> &Self::Output'
24     fn index(&self, index: Idx) -> &Self::Output;
25 }
26
27 // @has issue_20727_4/trait.IndexMut.html
28 pub trait IndexMut<Idx: ?Sized>: Index<Idx> {
29     // @has - '//*[@class="rust trait"]' \
30     //        'trait IndexMut<Idx: ?Sized>: Index<Idx> {'
31     // @has - '//*[@class="rust trait"]' \
32     //        'fn index_mut(&mut self, index: Idx) -> &mut Self::Output;'
33     fn index_mut(&mut self, index: Idx) -> &mut Self::Output;
34 }
35
36 pub mod reexport {
37     // @has issue_20727_4/reexport/trait.Index.html
38     // @has - '//*[@class="rust trait"]' 'trait Index<Idx> where Idx: ?Sized {'
39     // @has - '//*[@class="rust trait"]' 'type Output: ?Sized'
40     // @has - '//*[@class="rust trait"]' \
41     //        'fn index(&self, index: Idx) -> &Self::Output'
42     pub use issue_20727::Index;
43
44     // @has issue_20727_4/reexport/trait.IndexMut.html
45     // @has - '//*[@class="rust trait"]' \
46     //        'trait IndexMut<Idx>: Index<Idx> where Idx: ?Sized {'
47     // @has - '//*[@class="rust trait"]' \
48     //        'fn index_mut(&mut self, index: Idx) -> &mut Self::Output;'
49     pub use issue_20727::IndexMut;
50 }