about summary refs log tree commit diff
path: root/tests/rustdoc/inline_cross/hidden-use.rs
blob: f747c94915ceffb1b7ba5bec9181a14a99304269 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//@ aux-build:rustdoc-hidden.rs
//@ build-aux-docs
//@ ignore-cross-compile

extern crate rustdoc_hidden;

// @has hidden_use/index.html
// @!hasraw - 'rustdoc_hidden'
// @!hasraw - 'Bar'
// @!has hidden_use/struct.Bar.html
#[doc(hidden)]
pub use rustdoc_hidden::Bar;