2020-12-29 23:16:16 -05:00
|
|
|
#![deny(rustdoc::private_doc_tests)]
|
2018-10-26 00:55:12 +02:00
|
|
|
|
|
|
|
|
mod foo {
|
|
|
|
|
/// private doc test
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// assert!(false);
|
|
|
|
|
/// ```
|
2019-11-24 18:42:22 -08:00
|
|
|
//~^^^^^ ERROR documentation test in private item
|
2018-10-26 00:55:12 +02:00
|
|
|
fn bar() {}
|
|
|
|
|
}
|