rust/tests/run-make-fulldeps/issue-38237/baz.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
172 B
Rust
Raw Normal View History

2016-12-20 15:22:09 -06:00
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!() }
}