summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/issue-20727-2.rs
blob: c1aa9617b2e25ea5e1fc492a439f38fb5e9f710c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// aux-build:issue-20727.rs
// ignore-cross-compile

extern crate issue_20727;

// @has issue_20727_2/trait.Add.html
pub trait Add<RHS = Self> {
    // @has - '//pre[@class="rust item-decl"]' 'trait Add<RHS = Self> {'
    // @has - '//pre[@class="rust item-decl"]' 'type Output;'
    type Output;

    // @has - '//pre[@class="rust item-decl"]' 'fn add(self, rhs: RHS) -> Self::Output;'
    fn add(self, rhs: RHS) -> Self::Output;
}

// @has issue_20727_2/reexport/trait.Add.html
pub mod reexport {
    // @has - '//pre[@class="rust item-decl"]' 'trait Add<RHS = Self> {'
    // @has - '//pre[@class="rust item-decl"]' 'type Output;'
    // @has - '//pre[@class="rust item-decl"]' 'fn add(self, rhs: RHS) -> Self::Output;'
    pub use issue_20727::Add;
}