rust/tests/run-make/issue-38237/baz.rs
2023-03-30 07:34:55 -05: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!() }
}