mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 03:57:37 +00:00
9 lines
349 B
Rust
9 lines
349 B
Rust
![]() |
// outer.rs
|
||
|
// aux-build: module.rs
|
||
|
// build-aux-docs
|
||
|
#![deny(intra_doc_link_resolution_failure)]
|
||
|
extern crate module_inner;
|
||
|
// @has 'module/bar/index.html' '//a[@href="../../module_inner/trait.SomeTrait.html"]' 'SomeTrait'
|
||
|
// @has 'module/bar/index.html' '//a[@href="../../module_inner/struct.SomeType.html"]' 'SomeType'
|
||
|
pub use module_inner::bar;
|