2020-06-07 22:11:03 -04:00
|
|
|
// aux-build:additional_doc.rs
|
|
|
|
// build-aux-docs
|
2020-07-30 10:38:55 -07:00
|
|
|
#![deny(broken_intra_doc_links)]
|
2020-06-10 08:56:44 -04:00
|
|
|
|
2020-06-10 10:30:33 -04:00
|
|
|
extern crate my_rand;
|
2020-06-07 22:11:03 -04:00
|
|
|
|
|
|
|
// @has 'additional_doc/trait.Rng.html' '//a[@href="../additional_doc/trait.Rng.html"]' 'Rng'
|
2020-06-10 10:30:33 -04:00
|
|
|
// @has 'additional_doc/trait.Rng.html' '//a[@href="../my_rand/trait.RngCore.html"]' 'RngCore'
|
2020-06-07 22:11:03 -04:00
|
|
|
/// This is an [`Rng`].
|
2020-06-10 10:30:33 -04:00
|
|
|
pub use my_rand::Rng;
|