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