Sign in
rust
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
run-make
/
deref-impl-rustdoc-ice
/
baz.rs
blob: f606ef9bd6b6ddfa17229feea67695088c001e51 [
file
] [
log
] [
blame
]
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
!()
}
}