about summary refs log tree commit diff
path: root/src/test/rustdoc/intra-doc-crate/auxiliary/module.rs
blob: b7e3913f108f7553d089dfd1885d29f430532d56 (plain)
1
2
3
4
5
6
7
#![crate_name = "module_inner"]
#![deny(broken_intra_doc_links)]
/// [SomeType] links to [bar]
pub struct SomeType;
pub trait SomeTrait {}
/// [bar] links to [SomeTrait] and also [SomeType]
pub mod bar {}