mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-25 13:24:22 +00:00
Add test for module ambiguity
This commit is contained in:
parent
fe98de2a8e
commit
69dab50762
18
src/test/rustdoc/intra-doc-link-mod-ambiguity.rs
Normal file
18
src/test/rustdoc/intra-doc-link-mod-ambiguity.rs
Normal 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;
|
Loading…
Reference in New Issue
Block a user