about summary refs log tree commit diff
path: root/tests/run-make/deref-impl-rustdoc-ice/baz.rs
blob: f606ef9bd6b6ddfa17229feea67695088c001e51 (plain)
1
2
3
4
5
6
7
8
9
10
extern crate bar;
extern crate foo;

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