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

12 lines
192 B
Rust
Raw Normal View History

2018-10-25 22:55:12 +00:00
#![deny(private_doc_tests)]
mod foo {
/// private doc test
///
/// ```
/// assert!(false);
/// ```
2018-11-30 15:20:07 +00:00
//~^^^^^ ERROR Documentation test in private item
2018-10-25 22:55:12 +00:00
fn bar() {}
}