summary refs log tree commit diff
path: root/src/test/rustdoc-ui/private-item-doc-test.rs
blob: 20ac292aeaf80fcea1ffd2e0b38713812be438cb (plain)
1
2
3
4
5
6
7
8
9
10
11
#![deny(private_doc_tests)]

mod foo {
    /// private doc test
    ///
    /// ```
    /// assert!(false);
    /// ```
    //~^^^^^ ERROR Documentation test in private item
    fn bar() {}
}