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