blob: 28a4f4bac1a4a38006eaa38abb633325e20c88df (
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;
|