Sign in
android
/
toolchain
/
rustc
/
5c0824a599f2f1f4dcb9c92edf09f6c1b555988d
/
.
/
tests
/
rustdoc-ui
/
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
()
{}
}