rust/tests/rustdoc/intra-doc/cross-crate/crate.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
197 B
Rust
Raw Normal View History

2020-09-26 21:32:20 -05:00
//@ aux-build:intra-link-cross-crate-crate.rs
//@ build-aux-docs
#![crate_name = "outer"]
extern crate inner;
//@ has outer/fn.f.html '//a[@href="../inner/fn.g.html"]' "crate::g"
2020-09-26 21:32:20 -05:00
pub use inner::f;