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