test(doc): no fallback marco resolution

This commit is contained in:
bohan 2023-04-27 16:23:51 +08:00
parent 907daec5ab
commit 9156b03287

View File

@ -0,0 +1,14 @@
// @has 'issue_106142/a/index.html'
// @count 'issue_106142/a/index.html' '//ul[@class="item-table"]//li//a' 1
#![allow(rustdoc::broken_intra_doc_links)]
pub mod a {
/// [`m`]
pub fn f() {}
#[macro_export]
macro_rules! m {
() => {};
}
}