]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/issue-20727.rs
Auto merge of #31700 - oli-obk:skip_double_ended, r=alexcrichton
[rust.git] / src / test / rustdoc / issue-20727.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/trait.Deref.html
17 pub trait Deref {
18     // @has - '//*[@class="rust trait"]' 'trait Deref {'
19     // @has - '//*[@class="rust trait"]' 'type Target: ?Sized;'
20     type Target: ?Sized;
21
22     // @has - '//*[@class="rust trait"]' \
23     //        "fn deref<'a>(&'a self) -> &'a Self::Target;"
24     fn deref<'a>(&'a self) -> &'a Self::Target;
25 }
26
27 // @has issue_20727/reexport/trait.Deref.html
28 pub mod reexport {
29     // @has - '//*[@class="rust trait"]' 'trait Deref {'
30     // @has - '//*[@class="rust trait"]' 'type Target: ?Sized;'
31     // @has - '//*[@class="rust trait"]' \
32     //      "fn deref(&'a self) -> &'a Self::Target;"
33     pub use issue_20727::Deref;
34 }