Add test for module ambiguity

This commit is contained in:
Manish Goregaokar 2020-07-17 11:33:49 -07:00
parent fe98de2a8e
commit 69dab50762

View File

@ -0,0 +1,18 @@
// ignore-tidy-linelength
#![deny(intra_doc_link_resolution_failure)]
pub fn foo() {
}
pub mod foo {}
// @has intra_doc_link_mod_ambiguity/struct.A.html '//a/@href' '../intra_doc_link_mod_ambiguity/foo/index.html'
/// Module is [`module@foo`]
pub struct A;
// @has intra_doc_link_mod_ambiguity/struct.B.html '//a/@href' '../intra_doc_link_mod_ambiguity/fn.foo.html'
/// Function is [`fn@foo`]
pub struct B;