Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
rustdoc-ui
/
doctest
/
private-public-item-doc-test.rs
blob: 7cc62b38cc26080174a39ef01c3ff1b64176dfce [
file
] [
log
] [
blame
]
#![
deny
(
rustdoc
::
private_doc_tests
)]
mod
foo
{
/// private doc test
///
/// ```
/// assert!(false);
/// ```
//~^^^^^ ERROR documentation test in private item
pub
fn
bar
()
{}
}