blob: 85c5866ca7ecfbc1b8ad0d56d01f3cc1d84e538e (
plain)
1
2
3
4
5
6
7
8
9
10
|
// aux-build:additional_doc.rs
// build-aux-docs
#![deny(broken_intra_doc_links)]
extern crate my_rand;
// @has 'additional_doc/trait.Rng.html' '//a[@href="trait.Rng.html"]' 'Rng'
// @has 'additional_doc/trait.Rng.html' '//a[@href="../my_rand/trait.RngCore.html"]' 'RngCore'
/// This is an [`Rng`].
pub use my_rand::Rng;
|