mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-10 05:18:22 +00:00
17 lines
214 B
Rust
17 lines
214 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;
|