summaryrefslogtreecommitdiff
path: root/tests/ui/reachable/auxiliary/foreign-priv-aux.rs
blob: 10dc0861461393aca28b611be970c4e48ac771d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
trait PrivTrait {
    fn priv_fn(&self);
}

pub struct ImplPrivTrait;

impl PrivTrait for ImplPrivTrait {
    fn priv_fn(&self) {}
}

pub struct Wrapper<T>(T);

pub trait PubTrait {
    fn pub_fn(&self);
}

impl<T: PrivTrait> PubTrait for Wrapper<T> {
    fn pub_fn(&self) {
        self.0.priv_fn()
    }
}