blob: 84d63c20aa8b5cf35734acba64cb6385e4959721 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// `macro_rules` scopes are respected during doc link resolution.
// compile-flags: --document-private-items
#![deny(rustdoc::broken_intra_doc_links)]
mod no_escape {
macro_rules! before_but_limited_to_module {
() => {};
}
}
/// [before_but_limited_to_module] FIXME: This error should be reported
// ERROR unresolved link to `before_but_limited_to_module`
/// [after] FIXME: This error should be reported
// ERROR unresolved link to `after`
/// [str] FIXME: This error shouldn not be reported
//~^ ERROR `str` is both a builtin type and a macro
fn check() {}
macro_rules! after {
() => {};
}
macro_rules! str {
() => {};
}
|