about summary refs log tree commit diff
path: root/src/test/rustdoc/intra-doc-crate/module.rs
blob: 658b3219681ef2adbda70de3ad3baff3e699230e (plain)
1
2
3
4
5
6
7
8
// outer.rs
// aux-build: module.rs
// build-aux-docs
#![deny(intra_doc_link_resolution_failures)]
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;