• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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;
14