blob: f289359e52ac9b0646d073348a31a604d7ceb60a [file] [log] [blame]
#[derive(Clone)]
pub struct MaskedStruct;
pub trait MaskedTrait {
fn masked_method();
}
impl MaskedTrait for String {
fn masked_method() {}
}