433da1fc04
They pass fine.
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!() }
|
|
}
|