blob: 08d22fbedf5cc5d9110ea4c73fe51e64246cdd7d [file] [log] [blame]
// See coherence_inherent_cc.rs
pub trait TheTrait {
fn the_fn(&self);
}
pub struct TheStruct;
impl TheTrait for TheStruct {
fn the_fn(&self) {}
}