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

13 lines
196 B
Rust
Raw Normal View History

2020-09-12 14:30:40 +02:00
// check-pass
#![deny(private_doc_tests)]
mod foo {
/// private doc test
///
/// ```ignore (used for testing ignored doc tests)
/// assert!(false);
/// ```
fn bar() {}
}