Files
rust/tests/rustdoc-js/doc-alias-after-other-items.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
139 B
Rust
Raw Normal View History

pub struct Foo;
#[doc(alias = "Boo")]
pub fn bar() {}
pub struct Confiture;
#[doc(alias = "Confiture")]
pub fn this_is_a_long_name() {}