blob: a076f8a3c5ec799a319797deec73ca4ec208fa98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#![crate_name = "foo"]
// @has foo/macro.bar.html
// @has foo/macro.bar!.html
// @!has foo/bar.m.html
#[macro_export]
macro_rules! bar {
() => {}
}
// @has foo/struct.Bar.html
// @!has foo/Bar.t.html
pub struct Bar;
|