mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 09:06:27 +00:00
11 lines
184 B
Rust
11 lines
184 B
Rust
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!()
|
|
}
|
|
}
|