blob: 0c7acbaf09329edd4e3af0f46cb9b190af896faa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#![deny(rustdoc::broken_intra_doc_links)]
pub fn foo() {
}
pub mod foo {}
// @has mod_ambiguity/struct.A.html '//a/@href' 'foo/index.html'
/// Module is [`module@foo`]
pub struct A;
// @has mod_ambiguity/struct.B.html '//a/@href' 'fn.foo.html'
/// Function is [`fn@foo`]
pub struct B;
|