summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/issue-106142.rs
blob: 41505e72405d3f010c158416b1a2cd0a779ea662 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 {
        () => {};
    }
}