blob: 08996826561a1762fc7afb888c18dad15d9c6669 (
plain)
1
2
3
4
5
6
7
8
|
//@ aux-build:submodule-inner.rs
//@ build-aux-docs
#![deny(rustdoc::broken_intra_doc_links)]
extern crate a;
// @has 'submodule_inner/struct.Foo.html' '//a[@href="../a/bar/struct.Bar.html"]' 'Bar'
pub use a::foo::Foo;
|