2024-02-22 12:10:29 +00:00
|
|
|
//@ check-pass
|
2021-12-28 21:37:08 +11:00
|
|
|
|
|
|
|
|
#![deny(rustdoc::private_doc_tests)]
|
|
|
|
|
|
2021-12-29 00:53:12 +11:00
|
|
|
pub fn foo() {}
|
|
|
|
|
|
|
|
|
|
mod private {
|
2021-12-28 21:37:08 +11:00
|
|
|
/// re-exported doc test
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// assert!(true);
|
|
|
|
|
/// ```
|
|
|
|
|
pub fn bar() {}
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-29 00:53:12 +11:00
|
|
|
pub use private::bar;
|