rust/tests/rustdoc/inline_local/macro_by_example.rs

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

18 lines
508 B
Rust
Raw Normal View History

/// docs for foo
#[deprecated(since = "1.2.3", note = "text")]
#[macro_export]
macro_rules! foo {
($($tt:tt)*) => {}
}
// @has macro_by_example/macros/index.html
pub mod macros {
2022-08-11 23:44:07 -05:00
// @!hasraw - 'pub use foo as bar;'
// @has macro_by_example/macros/macro.bar.html
// @has - '//*[@class="docblock"]' 'docs for foo'
// @has - '//*[@class="stab deprecated"]' 'Deprecated since 1.2.3: text'
2018-12-25 09:56:47 -06:00
// @has - '//a/@href' 'macro_by_example.rs.html#4-6'
#[doc(inline)]
pub use foo as bar;
}