summaryrefslogtreecommitdiffstats
path: root/tests/run-make-fulldeps/issue-38237/baz.rs
blob: cd2425f9b692bd2dc291cf2a47a10862cb23b04b (plain)
1
2
3
4
5
6
7
8
extern crate foo;
extern crate bar;

pub struct Bar;
impl ::std::ops::Deref for Bar {
    type Target = bar::S;
    fn deref(&self) -> &Self::Target { unimplemented!() }
}