rust/src/test/rustdoc/auxiliary/masked.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
152 B
Rust
Raw Normal View History

#[derive(Clone)]
pub struct MaskedStruct;
pub trait MaskedTrait {
fn masked_method();
}
impl MaskedTrait for String {
fn masked_method() {}
}