15 lines
491 B
Rust
15 lines
491 B
Rust
![]() |
// aux-build:submodule.rs
|
||
|
// edition:2018
|
||
|
extern crate bar as bar_;
|
||
|
|
||
|
// from https://github.com/rust-lang/rust/issues/60883
|
||
|
pub mod bar {
|
||
|
pub use ::bar_::Bar;
|
||
|
}
|
||
|
|
||
|
// NOTE: we re-exported both `Foo` and `Bar` here,
|
||
|
// NOTE: so they are inlined and therefore we link to the current module.
|
||
|
// @has 'submodule/trait.Foo.html' '//a[@href="../submodule/bar/trait.Bar.html"]' 'Bar'
|
||
|
// @has 'submodule/trait.Foo.html' '//a[@href="../submodule/trait.Baz.html"]' 'Baz'
|
||
|
pub use ::bar_::{Foo, Baz};
|