mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-02 04:57:35 +00:00
8 lines
216 B
Rust
8 lines
216 B
Rust
![]() |
#![crate_name = "module_inner"]
|
||
|
#![deny(intra_doc_link_resolution_failure)]
|
||
|
/// [SomeType] links to [bar]
|
||
|
pub struct SomeType;
|
||
|
pub trait SomeTrait {}
|
||
|
/// [bar] links to [SomeTrait] and also [SomeType]
|
||
|
pub mod bar {}
|