rust/tests/ui/coherence/auxiliary/coherence_inherent_cc_lib.rs

12 lines
158 B
Rust

// See coherence_inherent_cc.rs
pub trait TheTrait {
fn the_fn(&self);
}
pub struct TheStruct;
impl TheTrait for TheStruct {
fn the_fn(&self) {}
}