rust/src/test/rustdoc-ui/private-item-doc-test.rs

12 lines
192 B
Rust
Raw Normal View History

2018-10-26 00:55:12 +02:00
#![deny(private_doc_tests)]
mod foo {
/// private doc test
///
/// ```
/// assert!(false);
/// ```
2019-11-24 18:42:22 -08:00
//~^^^^^ ERROR documentation test in private item
2018-10-26 00:55:12 +02:00
fn bar() {}
}