2018-12-11 17:33:00 -06:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
// @has foo/macro.bar.html
|
2019-02-08 18:07:38 -06:00
|
|
|
// @has foo/macro.bar!.html
|
2018-12-11 17:33:00 -06:00
|
|
|
// @!has foo/bar.m.html
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! bar {
|
|
|
|
() => {}
|
|
|
|
}
|
|
|
|
|
|
|
|
// @has foo/struct.Bar.html
|
|
|
|
// @!has foo/Bar.t.html
|
|
|
|
pub struct Bar;
|