mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
15 lines
192 B
Rust
15 lines
192 B
Rust
#![crate_name = "alias_path_distance"]
|
|
|
|
pub struct Foo;
|
|
pub struct Bar;
|
|
|
|
impl Foo {
|
|
#[doc(alias = "zzz")]
|
|
pub fn baz() {}
|
|
}
|
|
|
|
impl Bar {
|
|
#[doc(alias = "zzz")]
|
|
pub fn baz() {}
|
|
}
|