2020-07-11 12:28:05 -05:00
|
|
|
// outer.rs
|
|
|
|
//@ aux-build: module.rs
|
|
|
|
//@ build-aux-docs
|
2021-11-26 17:03:16 -06:00
|
|
|
#![deny(rustdoc::broken_intra_doc_links)]
|
2020-07-11 12:28:05 -05:00
|
|
|
extern crate module_inner;
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ 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'
|
2020-07-11 12:28:05 -05:00
|
|
|
pub use module_inner::bar;
|