mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
213 B
Rust
17 lines
213 B
Rust
// check-pass
|
|
|
|
#![deny(rustdoc::private_doc_tests)]
|
|
|
|
pub fn foo() {}
|
|
|
|
mod private {
|
|
/// re-exported doc test
|
|
///
|
|
/// ```
|
|
/// assert!(true);
|
|
/// ```
|
|
pub fn bar() {}
|
|
}
|
|
|
|
pub use private::bar;
|