]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/without-redirect.rs
Add 'src/tools/rust-analyzer/' from commit '977e12a0bdc3e329af179ef3a9d466af9eb613bb'
[rust.git] / src / test / 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;