]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc-ui/private-doc-test.rs
Rollup merge of #81619 - SkiFire13:resultshunt-inplace, r=the8472
[rust.git] / src / test / rustdoc-ui / private-doc-test.rs
1 // check-pass
2
3 #![deny(rustdoc::private_doc_tests)]
4
5 mod foo {
6     /// private doc test
7     ///
8     /// ```ignore (used for testing ignored doc tests)
9     /// assert!(false);
10     /// ```
11     fn bar() {}
12 }