2016-12-20 21:22:09 +00:00
|
|
|
extern crate bar;
|
2024-05-29 15:01:33 +10:00
|
|
|
extern crate foo;
|
2016-12-20 21:22:09 +00:00
|
|
|
|
|
|
|
|
pub struct Bar;
|
|
|
|
|
impl ::std::ops::Deref for Bar {
|
|
|
|
|
type Target = bar::S;
|
2024-05-29 15:01:33 +10:00
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
|
unimplemented!()
|
|
|
|
|
}
|
2016-12-20 21:22:09 +00:00
|
|
|
}
|