summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/intra-doc/cross-crate/module.rs
blob: fde9322657d11cf74e03332694f764b96a3b6c32 (plain)
1
2
3
4
5
6
7
8
// outer.rs
// aux-build: module.rs
// build-aux-docs
#![deny(rustdoc::broken_intra_doc_links)]
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;