rust/tests/rustdoc/without-redirect.rs

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

14 lines
222 B
Rust
Raw Normal View History

#![crate_name = "foo"]
// @has foo/macro.bar.html
2019-02-09 00:07:38 +00:00
// @has foo/macro.bar!.html
// @!has foo/bar.m.html
#[macro_export]
macro_rules! bar {
() => {}
}
// @has foo/struct.Bar.html
// @!has foo/Bar.t.html
pub struct Bar;