rust/src/test/rustdoc/inline_cross/hidden-use.rs

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

13 lines
259 B
Rust
Raw Normal View History

// aux-build:rustdoc-hidden.rs
// build-aux-docs
// ignore-cross-compile
extern crate rustdoc_hidden;
// @has hidden_use/index.html
// @!has - 'rustdoc_hidden'
// @!has - 'Bar'
// @!has hidden_use/struct.Bar.html
#[doc(hidden)]
pub use rustdoc_hidden::Bar;