mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-22 03:44:24 +00:00
9 lines
172 B
Rust
9 lines
172 B
Rust
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!() }
|
|
}
|