mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 12:07:40 +00:00
7 lines
195 B
Rust
7 lines
195 B
Rust
// 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"
|
|
pub use inner::f;
|