]> git.proxmox.com Git - rustc.git/blame - src/test/rustdoc/inline_cross/use_crate.rs
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / rustdoc / inline_cross / use_crate.rs
CommitLineData
13cf67c4
XL
1// aux-build:use_crate.rs
2// aux-build:use_crate_2.rs
3// build-aux-docs
4// edition:2018
60c5eb7d 5// compile-flags:--extern use_crate --extern use_crate_2
13cf67c4
XL
6
7// During the buildup to Rust 2018, rustdoc would eagerly inline `pub use some_crate;` as if it
8// were a module, so we changed it to make `pub use`ing crate roots remain as a `pub use` statement
9// in docs... unless you added `#[doc(inline)]`.
10
11#![crate_name = "local"]
12
13// @!has-dir local/use_crate
14// @has local/index.html
15// @has - '//code' 'pub use use_crate'
16pub use use_crate;
17
18// @has-dir local/asdf
19// @has local/asdf/index.html
20// @has local/index.html '//a/@href' 'asdf/index.html'
21pub use use_crate::asdf;
22
23// @has-dir local/use_crate_2
24// @has local/use_crate_2/index.html
25// @has local/index.html '//a/@href' 'use_crate_2/index.html'
26#[doc(inline)]
27pub use use_crate_2;