]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/issue-20727-2.rs
Merge remote-tracking branch 'miri/upstream' into miri
[rust.git] / src / test / rustdoc / issue-20727-2.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_2/trait.Add.html
17 pub trait Add<RHS = Self> {
18     // @has - '//*[@class="rust trait"]' 'trait Add<RHS = Self> {'
19     // @has - '//*[@class="rust trait"]' 'type Output;'
20     type Output;
21
22     // @has - '//*[@class="rust trait"]' 'fn add(self, rhs: RHS) -> Self::Output;'
23     fn add(self, rhs: RHS) -> Self::Output;
24 }
25
26 // @has issue_20727_2/reexport/trait.Add.html
27 pub mod reexport {
28     // @has - '//*[@class="rust trait"]' 'trait Add<RHS = Self> {'
29     // @has - '//*[@class="rust trait"]' 'type Output;'
30     // @has - '//*[@class="rust trait"]' 'fn add(self, rhs: RHS) -> Self::Output;'
31     pub use issue_20727::Add;
32 }
33