2020-06-16 13:55:13 -07:00
|
|
|
// aux-build:hidden.rs
|
|
|
|
// build-aux-docs
|
2020-07-30 10:38:55 -07:00
|
|
|
#![deny(broken_intra_doc_links)]
|
2020-06-16 13:55:13 -07:00
|
|
|
|
|
|
|
// tests https://github.com/rust-lang/rust/issues/73363
|
|
|
|
|
|
|
|
extern crate hidden_dep;
|
|
|
|
|
|
|
|
// @has 'hidden/struct.Ready.html' '//a/@href' '../hidden/fn.ready.html'
|
|
|
|
pub use hidden_dep::future::{ready, Ready};
|