]> git.proxmox.com Git - rustc.git/blob - tests/run-make-fulldeps/issue-38237/baz.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / run-make-fulldeps / issue-38237 / baz.rs
1 extern crate foo;
2 extern crate bar;
3
4 pub struct Bar;
5 impl ::std::ops::Deref for Bar {
6 type Target = bar::S;
7 fn deref(&self) -> &Self::Target { unimplemented!() }
8 }