summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/auxiliary/masked.rs
blob: f289359e52ac9b0646d073348a31a604d7ceb60a (plain)
1
2
3
4
5
6
7
8
9
10
#[derive(Clone)]
pub struct MaskedStruct;

pub trait MaskedTrait {
    fn masked_method();
}

impl MaskedTrait for String {
    fn masked_method() {}
}