2020-06-07 21:11:03 -05:00
|
|
|
// aux-build:additional_doc.rs
|
|
|
|
// build-aux-docs
|
2021-11-26 17:03:16 -06:00
|
|
|
#![deny(rustdoc::broken_intra_doc_links)]
|
2020-06-10 07:56:44 -05:00
|
|
|
|
2020-06-10 09:30:33 -05:00
|
|
|
extern crate my_rand;
|
2020-06-07 21:11:03 -05:00
|
|
|
|
2021-03-17 13:41:01 -05:00
|
|
|
// @has 'additional_doc/trait.Rng.html' '//a[@href="trait.Rng.html"]' 'Rng'
|
2020-06-10 09:30:33 -05:00
|
|
|
// @has 'additional_doc/trait.Rng.html' '//a[@href="../my_rand/trait.RngCore.html"]' 'RngCore'
|
2020-06-07 21:11:03 -05:00
|
|
|
/// This is an [`Rng`].
|
2020-06-10 09:30:33 -05:00
|
|
|
pub use my_rand::Rng;
|