Add rustdoc test.
This commit is contained in:
parent
59f1ccd35c
commit
abef2ed2bc
1 changed files with 14 additions and 0 deletions
|
@ -8,3 +8,17 @@ macro_rules! my_macro {
|
||||||
($a:tt) => ();
|
($a:tt) => ();
|
||||||
($e:expr) => {};
|
($e:expr) => {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check that exported macro defined in a module are shown at crate root.
|
||||||
|
// @has macros/macro.my_sub_macro.html //pre 'macro_rules! my_sub_macro {'
|
||||||
|
// @has - //pre '() => { ... };'
|
||||||
|
// @has - //pre '($a:tt) => { ... };'
|
||||||
|
// @has - //pre '($e:expr) => { ... };'
|
||||||
|
mod sub {
|
||||||
|
#[macro_export]
|
||||||
|
macro_rules! my_sub_macro {
|
||||||
|
() => {};
|
||||||
|
($a:tt) => {};
|
||||||
|
($e:expr) => {};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue