rust/tests/run-make-fulldeps/issue-38237/baz.rs
2023-01-11 09:32:08 +00:00

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!() }
}