summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coherence/auxiliary/coherence_inherent_cc_lib.rs
blob: 08d22fbedf5cc5d9110ea4c73fe51e64246cdd7d (plain)
1
2
3
4
5
6
7
8
9
10
11
// See coherence_inherent_cc.rs

pub trait TheTrait {
    fn the_fn(&self);
}

pub struct TheStruct;

impl TheTrait for TheStruct {
    fn the_fn(&self) {}
}