summary refs log tree commit diff
path: root/src/test/rustdoc-ui/private-doc-test.rs
blob: 379fa45f9fa3e9651086ba35c202f537c6b229ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// check-pass

#![deny(private_doc_tests)]

mod foo {
    /// private doc test
    ///
    /// ```ignore (used for testing ignored doc tests)
    /// assert!(false);
    /// ```
    fn bar() {}
}