]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/masked.rs
Auto merge of #46450 - Gilnaa:libtest_json_output, r=nrc
[rust.git] / src / test / rustdoc / masked.rs
1 // Copyright 2018 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:masked.rs
12
13 #![feature(doc_masked)]
14
15 #![crate_name = "foo"]
16
17 #[doc(masked)]
18 extern crate masked;
19
20 // @!has 'search-index.js' 'masked_method'
21
22 // @!has 'foo/struct.String.html' 'MaskedTrait'
23 // @!has 'foo/struct.String.html' 'masked_method'
24 pub use std::string::String;
25
26 // @!has 'foo/trait.Clone.html' 'MaskedStruct'
27 pub use std::clone::Clone;
28
29 // @!has 'foo/struct.MyStruct.html' 'MaskedTrait'
30 // @!has 'foo/struct.MyStruct.html' 'masked_method'
31 pub struct MyStruct;
32
33 impl masked::MaskedTrait for MyStruct {
34     fn masked_method() {}
35 }
36
37 // @!has 'foo/trait.MyTrait.html' 'MaskedStruct'
38 pub trait MyTrait {}
39
40 impl MyTrait for masked::MaskedStruct {}