Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
4486c24db3ca1c698b34ea08bee15194774b53df
/
.
/
tests
/
rustdoc
/
intra-doc
/
issue-104145.rs
blob: 5690803af5ae93301699b120438fae446156574c [
file
] [
log
] [
blame
]
// Doc links in `Trait`'s methods are resolved because it has a local impl.
//@ aux-build:issue-103463-aux.rs
extern
crate issue_103463_aux
;
use
issue_103463_aux
::
Trait
;
pub
struct
LocalType
;
impl
Trait
for
LocalType
{
fn
method
()
{}
}
fn
main
()
{}