2020-06-16 15:55:13 -05:00
|
|
|
// aux-build:hidden.rs
|
|
|
|
// build-aux-docs
|
2021-11-26 17:03:16 -06:00
|
|
|
#![deny(rustdoc::broken_intra_doc_links)]
|
2020-06-16 15:55:13 -05:00
|
|
|
|
|
|
|
// tests https://github.com/rust-lang/rust/issues/73363
|
|
|
|
|
|
|
|
extern crate hidden_dep;
|
|
|
|
|
2021-03-17 13:41:01 -05:00
|
|
|
// @has 'hidden/struct.Ready.html' '//a/@href' 'fn.ready.html'
|
2020-06-16 15:55:13 -05:00
|
|
|
pub use hidden_dep::future::{ready, Ready};
|