summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/masked.rs
blob: c7ad690d66e3e750474616e48202baaa66f5f12a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// aux-build:masked.rs

#![feature(doc_masked)]

#![crate_name = "foo"]

#[doc(masked)]
extern crate masked;

// @!has 'search-index.js' 'masked_method'

// @!has 'foo/struct.String.html' 'MaskedTrait'
// @!has 'foo/struct.String.html' 'masked_method'
pub use std::string::String;

// @!has 'foo/trait.Clone.html' 'MaskedStruct'
pub use std::clone::Clone;

// @!has 'foo/struct.MyStruct.html' 'MaskedTrait'
// @!has 'foo/struct.MyStruct.html' 'masked_method'
pub struct MyStruct;

impl masked::MaskedTrait for MyStruct {
    fn masked_method() {}
}

// @!has 'foo/trait.MyTrait.html' 'MaskedStruct'
pub trait MyTrait {}

impl MyTrait for masked::MaskedStruct {}