mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 01:08:18 +00:00
15 lines
257 B
Rust
15 lines
257 B
Rust
// 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() {}
|