]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/without-redirect.rs
Rollup merge of #106441 - mllken:abstract-socket-noref, r=joshtriplett
[rust.git] / tests / rustdoc / without-redirect.rs
1 #![crate_name = "foo"]
2
3 // @has foo/macro.bar.html
4 // @has foo/macro.bar!.html
5 // @!has foo/bar.m.html
6 #[macro_export]
7 macro_rules! bar {
8     () => {}
9 }
10
11 // @has foo/struct.Bar.html
12 // @!has foo/Bar.t.html
13 pub struct Bar;