Skip to content

Commit 9156b03

Browse files
committed
test(doc): no fallback marco resolution
1 parent 907daec commit 9156b03

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

tests/rustdoc/issue-106142.rs

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// @has 'issue_106142/a/index.html'
2+
// @count 'issue_106142/a/index.html' '//ul[@class="item-table"]//li//a' 1
3+
4+
#![allow(rustdoc::broken_intra_doc_links)]
5+
6+
pub mod a {
7+
/// [`m`]
8+
pub fn f() {}
9+
10+
#[macro_export]
11+
macro_rules! m {
12+
() => {};
13+
}
14+
}

0 commit comments

Comments
 (0)